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