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