123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using CZKJ.GBRS2.Interface;
- using Microsoft.AspNetCore.Mvc;
- namespace CZKJ.GBRS2.WebMVC.Controllers
- {
- public class PriceAnnouncementController : Controller
- {
- private readonly IPriceAnnouncement _priceAnnouncementLgoic;
- public IActionResult Index()
- {
- return View();
- }
- }
- }
|