地铁二期项目正式开始

RepositoryController.cs 553B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace YTSoft.BaseCallCenter.MVCWeb.Controllers
  7. {
  8. public class RepositoryController : Controller
  9. {
  10. //
  11. // GET: /Repository/
  12. public ActionResult Index()
  13. {
  14. return View();
  15. }
  16. /// <summary>
  17. /// 常用QA管理
  18. /// </summary>
  19. /// <returns></returns>
  20. public ActionResult RepositoryQAList()
  21. {
  22. return View();
  23. }
  24. }
  25. }