public ClaimRequirementFilter(AppSections section, IHttpContextAccessor httpContextAccessor, IMemoryCache cache)
 {
     _section             = section;
     _httpContextAccessor = httpContextAccessor;
     _cache = cache;
 }
 public ControllerAuthorize(AppSections section) : base(typeof(ClaimRequirementFilter))
 {
     Arguments = new object[] { section };
 }