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