public GoalCompletionStatisticService( DataContext dataContext, IGoalsRepository goalsRepository) { _dataContext = dataContext; _goalsRepository = goalsRepository; }
public WorkloadForProjectStatisticService( DataContext dataContext, IGoalsRepository goalsRepository) { _dataContext = dataContext; _goalsRepository = goalsRepository; }
public GoalsController(IGoalsRepository repository, IEmployeesRepository employeesRepository, ISubjectRepository subjectRepository, IMapper mapper) { _repository = repository; _employeeRepository = employeesRepository; _subjectRepository = subjectRepository; _mapper = mapper; }
public GoalsController(IGoalsRepository goalRepository, ILogger <GoalsController> logger, IMapper mapper) { _goalRepository = goalRepository; _logger = logger; _mapper = mapper; }
public ProgressBuilder(ILocalStorage local, IGoalsRepository goalsRepository, IProgressRepository progressRepository, ISleepRepository sleepRepository) { _localStorage = local; _goalsRepository = goalsRepository; _progressRepository = progressRepository; _sleepRepository = sleepRepository; }
public UserCreator( IUserTypeRepository userTypeRepository, ICoachRepository coachRepository, IPlayerRepository playerRepository, IGoalsRepository goalsRepository) { _coachRepository = coachRepository; _userTypeRepository = userTypeRepository; _playerRepository = playerRepository; _goalsRepository = goalsRepository; }
/// <summary> /// Конструктор /// </summary> /// <param name="dataContext"></param> /// <param name="repository"></param> /// <param name="stateNameProvider"></param> /// <param name="entityStateQueue"></param> public GoalsService(DataContext dataContext, IGoalsRepository repository, IGoalStateNameProvider stateNameProvider, IBackgroundTaskQueue <VmEntityStateMessage> entityStateQueue) { _dataContext = dataContext; _repository = repository; _stateNameProvider = stateNameProvider; _entityStateQueue = entityStateQueue; _vmConverter = new VmGoalConverter(); }
public TotalStatisticService( DataContext dataContext, IGoalsRepository goalsRepository, IGoalCompletionStatisticService goalCompletionStatisticService, IWorkloadForProjectStatisticService workloadForProjectStatisticService, IWorkloadByDaysStatisticService workloadByDaysStatisticService) { _dataContext = dataContext; _goalsRepository = goalsRepository; _goalCompletionStatisticService = goalCompletionStatisticService; _workloadForProjectStatisticService = workloadForProjectStatisticService; _workloadByDaysStatisticService = workloadByDaysStatisticService; }
public GoalServices(IGoalsRepository goalsRepository) { _goalsRepository = goalsRepository; }
public DataManager(IGoalsRepository goals, IUsersRepository users) { Goals = goals; Users = users; }
public CreateGoalCommandHandler(IGoalsRepository goalsRepository) { _goalsRepository = goalsRepository; }
public MovieDetailController() { MovieRepository = new MovieRepository(); GoalsRepository = new GoalsRepository(); }
public GoalsHandler(ILocalStorage local, IGoalsRepository goalsRepository) { _localStorage = local; _goalsRepository = goalsRepository; }
public BalanceUpdater(IBalanceHandler balanceHandler, IProgressFetcher progressFetcher, IGoalsRepository goalsRepository) { _balanceHandler = balanceHandler; _progressFetcher = progressFetcher; _goalsRepository = goalsRepository; }
public GoalsService(IGoalsRepository repo, IShiftsService shifts, IUsersRepository users) { _repo = repo; _shifts = shifts; _users = users; }
public GoalsControllerService(IGoalsRepository repository) { _repository = repository; }