PriceAnnouncementController.cs 427 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using CZKJ.GBRS2.Interface;
  6. using Microsoft.AspNetCore.Mvc;
  7. namespace CZKJ.GBRS2.WebMVC.Controllers
  8. {
  9. public class PriceAnnouncementController : Controller
  10. {
  11. private readonly IPriceAnnouncement _priceAnnouncementLgoic;
  12. public IActionResult Index()
  13. {
  14. return View();
  15. }
  16. }
  17. }