| 12345678910111213141516171819202122 |
- using System.Web.Mvc;
- using Abp.Web.Mvc.Authorization;
- using Abp.Runtime.Caching;
- namespace WeApp.Controllers
- {
- [AbpMvcAuthorize]
- public class PhoneAnswerController : IwbControllerBase
- {
- public PhoneAnswerController( ICacheManager cacheManager )
- {
- CacheManager = cacheManager;
- }
- [AbpMvcAuthorize]
- public ActionResult Index()
- {
- return View();
- }
- }
- }
|