Пример #1
0
 public PopulateWorkoutSchedulesJob(IQueryProcessor queryProcessor,
                                    IWorkoutScheduleCacheService workoutScheduleCacheService,
                                    IBackgroundJobClientService backgroundJobClientService)
 {
     _queryProcessor = queryProcessor;
     _workoutScheduleCacheService = workoutScheduleCacheService;
     _backgroundJobClientService  = backgroundJobClientService;
 }
 public PopulateUserCacheJob(IQueryProcessor queryProcessor,
                             IUserCacheService userCacheService,
                             IBackgroundJobClientService backgroundJobClientService)
 {
     _queryProcessor             = queryProcessor;
     _userCacheService           = userCacheService;
     _backgroundJobClientService = backgroundJobClientService;
 }
Пример #3
0
 public ExerciseRepository(
     IDatabaseAccessService databaseAccessService,
     IBackgroundJobClientService backgroundJobClientService,
     ICacheAccessService cacheAccessService)
 {
     _databaseAccessService      = databaseAccessService;
     _backgroundJobClientService = backgroundJobClientService;
     _cacheAccessService         = cacheAccessService;
 }
 public ExerciseRepository(
     IQueryProcessor queryProcessor,
     IBackgroundJobClientService backgroundJobClientService,
     IExerciseCacheService exerciseCacheService)
 {
     _queryProcessor             = queryProcessor;
     _backgroundJobClientService = backgroundJobClientService;
     _exerciseCacheService       = exerciseCacheService;
 }
 public FatiguesRepository(
     IQueryProcessor queryProcessor,
     IFatigueCacheService fatigueCacheService,
     IBackgroundJobClientService backgroundJobClientService
     )
 {
     _fatigueCacheService        = fatigueCacheService;
     _queryProcessor             = queryProcessor;
     _backgroundJobClientService = backgroundJobClientService;
 }
 public MoodRepository(
     IQueryProcessor queryProcessor,
     IMoodCacheService moodCacheService,
     IBackgroundJobClientService backgroundJobClientService
     )
 {
     _moodCacheService           = moodCacheService;
     _queryProcessor             = queryProcessor;
     _backgroundJobClientService = backgroundJobClientService;
 }
Пример #7
0
 public WorkoutSchedulesRepository(
     IWorkoutScheduleCacheService workoutScheduleCacheService,
     IWorkoutPlanRepository workoutPlanRepository,
     IQueryProcessor queryProcessor,
     IDateTimeService dateTimeService,
     IBackgroundJobClientService backgroundJobClientService)
 {
     _workoutScheduleCacheService = workoutScheduleCacheService;
     _workoutPlanRepository       = workoutPlanRepository;
     _queryProcessor             = queryProcessor;
     _dateTimeService            = dateTimeService;
     _backgroundJobClientService = backgroundJobClientService;
 }
 public PopulateExercisesJob(
     IQueryProcessor queryProcessor,
     IOptions <ExerciseServiceOptions> options,
     IExerciseCacheService exerciseCacheService,
     IRestClient restClient,
     ICommandDispatcher commandDispatcher,
     IBackgroundJobClientService backgroundJobClientService
     )
 {
     _exerciseCacheService = exerciseCacheService;
     _options                    = options.Value;
     _queryProcessor             = queryProcessor;
     _restClient                 = restClient;
     _commandDispatcher          = commandDispatcher;
     _backgroundJobClientService = backgroundJobClientService;
 }
 public PopulateMoodsJob(
     IQueryProcessor queryProcessor,
     IOptions <MoodServiceOptions> options,
     IMoodCacheService moodCacheService,
     IRestClient restClient,
     ICommandDispatcher commandDispatcher,
     IBackgroundJobClientService backgroundJobClientService
     )
 {
     _moodCacheService           = moodCacheService;
     _options                    = options.Value;
     _queryProcessor             = queryProcessor;
     _restClient                 = restClient;
     _commandDispatcher          = commandDispatcher;
     _backgroundJobClientService = backgroundJobClientService;
 }
Пример #10
0
 public PopulateFatiguesJob(
     IQueryProcessor queryProcessor,
     IOptions <FatigueServiceOptions> options,
     IFatigueCacheService fatigueCacheService,
     IRestClient restClient,
     ICommandDispatcher commandDispatcher,
     IBackgroundJobClientService backgroundJobClientService
     )
 {
     _fatigueCacheService        = fatigueCacheService;
     _options                    = options.Value;
     _queryProcessor             = queryProcessor;
     _restClient                 = restClient;
     _commandDispatcher          = commandDispatcher;
     _backgroundJobClientService = backgroundJobClientService;
 }
 public WorkoutExecutionRepository(
     IWorkoutExecutionCacheService workoutExecutionCacheService,
     IFatiguesRepository fatiguesRepository,
     IMoodsRepository moodsRepository,
     IUserRepository userRepository,
     IExerciseRepository exerciseRepository,
     IBackgroundJobClientService backgroundJobClientService,
     IQueryProcessor queryProcessor,
     IDateTimeProvider dateTimeProvider)
 {
     _moodsRepository              = moodsRepository;
     _fatiguesRepository           = fatiguesRepository;
     _workoutExecutionCacheService = workoutExecutionCacheService;
     _exerciseRepository           = exerciseRepository;
     _userRepository             = userRepository;
     _backgroundJobClientService = backgroundJobClientService;
     _queryProcessor             = queryProcessor;
     _dateTimeProvider           = dateTimeProvider;
 }