| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace YTSoft.BaseCallCenter.MVCWeb.Controllers
- {
- public class RepositoryController : Controller
- {
- //
- // GET: /Repository/
- public ActionResult Index()
- {
- return View();
- }
- /// <summary>
- /// 常用QA管理
- /// </summary>
- /// <returns></returns>
- public ActionResult RepositoryQAList()
- {
- return View();
- }
- }
- }
|