public UserRolesAdminController(
     IUserRolesAdminPresenter userRolesAdminPresenter,
     JwtBlackListService jwtBlackListService,
     IRolesCache rolesCache,
     IServiceProvider serviceProvider) : base(serviceProvider)
 {
     this.userRolesAdminPresenter = userRolesAdminPresenter;
     this.jwtBlackListService     = jwtBlackListService;
 }
 public CleanCacheJobsService(
     IDataBaseFactory dbFactory,
     SpamProtectionCache spamProtectionCache,
     IOptions <SchedulerOptions> schedulerOptions,
     JwtBlackListService jwtBlackListService)
 {
     this.dbFactory           = dbFactory;
     this.spamProtectionCache = spamProtectionCache;
     this.jwtBlackListService = jwtBlackListService;
     this.schedulerOptions    = schedulerOptions.Value;
 }