EvalReportTemplateController.cs 453 B

12345678910111213141516171819202122
  1. using System.Web.Mvc;
  2. using Abp.Web.Mvc.Authorization;
  3. using Abp.Runtime.Caching;
  4. namespace WePlatform.Controllers
  5. {
  6. [AbpMvcAuthorize]
  7. public class EvalReportTemplateController : IwbControllerBase
  8. {
  9. public EvalReportTemplateController( ICacheManager cacheManager )
  10. {
  11. CacheManager = cacheManager;
  12. }
  13. [AbpMvcAuthorize]
  14. public ActionResult Index()
  15. {
  16. return View();
  17. }
  18. }
  19. }