<#@ template language="C#" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.Linq" #> <#@ import namespace="System.Text" #> <#@ import namespace="System.Collections.Generic" #> using System.Web.Mvc; using Abp.Web.Mvc.Authorization; using Abp.Runtime.Caching; namespace <#=Model.ProjectName#>.Controllers { [AbpMvcAuthorize] public class <#=Model.ClassName#>Controller : ShwasherControllerBase { public <#=Model.ClassName#>Controller( ICacheManager cacheManager ) { CacheManager = cacheManager; } [AbpMvcAuthorize] public ActionResult Index() { return View(); } } }