Beispiel #1
0
 public ListController(AppDbContext appDbContext, ITraktService traktService, UserManager <User> userManager, IBackgroundJobQueueService backgroundJobQueueService, LimitConfigurationList limitConfigurationList)
 {
     _appDbContext = appDbContext;
     _traktService = traktService;
     _userManager  = userManager;
     _backgroundJobQueueService = backgroundJobQueueService;
     _limitConfigurationList    = limitConfigurationList;
 }
Beispiel #2
0
 public ListController(UserManager <User> userManager, IBackgroundJobQueueService backgroundJobQueueService, LimitConfigurationList limitConfigurationList, ITraktListRepository traktRepository, ITraktMovieRepository traktMovieRepository, ITraktShowRepository traktShowRepository, ITraktCodeRepository traktCodesRepository, ITraktService traktService)
 {
     _userManager = userManager;
     _backgroundJobQueueService = backgroundJobQueueService;
     _limitConfigurationList    = limitConfigurationList;
     _traktRepository           = traktRepository;
     _traktMovieRepository      = traktMovieRepository;
     _traktShowRepository       = traktShowRepository;
     _traktCodesRepository      = traktCodesRepository;
     _traktService = traktService;
 }
 public ProcessDonorListsRecurringJob(LimitConfigurationList limitConfigurationList, IBackgroundJobQueueService backgroundJobQueueService, ITraktListRepository traktRepository)
 {
     _limitConfigurationList    = limitConfigurationList;
     _backgroundJobQueueService = backgroundJobQueueService;
     _traktRepository           = traktRepository;
 }
 public ProcessUserListsRecurringJob(IBackgroundJobQueueService backgroundJobQueueService, ITraktListRepository traktRepository)
 {
     _backgroundJobQueueService = backgroundJobQueueService;
     _traktRepository           = traktRepository;
 }
 public UpdateAllListsRecurringJob(IBackgroundJobQueueService backgroundJobQueueService, ITraktListRepository traktRepository)
 {
     _backgroundJobQueueService = backgroundJobQueueService;
     _traktRepository           = traktRepository;
 }
 public ProcessDonorListsRecurringJob(ITraktService traktService, LimitConfigurationList limitConfigurationList, IBackgroundJobQueueService backgroundJobQueueService)
 {
     _traktService              = traktService;
     _limitConfigurationList    = limitConfigurationList;
     _backgroundJobQueueService = backgroundJobQueueService;
 }