public GetDailyFoodLog(
     IConfiguration configuration,
     IFitbitApiService fitbitApiService,
     IMapper mapper,
     IServiceBusHelpers serviceBusHelpers)
 {
     _configuration     = configuration;
     _fitbitApiService  = fitbitApiService;
     _mapper            = mapper;
     _serviceBusHelpers = serviceBusHelpers;
 }
Esempio n. 2
0
 public GetActivitySummaryByDate(
     IConfiguration configuration,
     IFitbitApiService fitbitApiService,
     IMapper mapper,
     IServiceBusHelpers serviceBusHelpers)
 {
     _configuration     = configuration;
     _fitbitApiService  = fitbitApiService;
     _mapper            = mapper;
     _serviceBusHelpers = serviceBusHelpers;
 }
 public RetrieveManualFoodLog(
     IConfiguration configuration,
     IFitbitApiService fitbitApiService,
     IMapper mapper,
     IServiceBusHelpers serviceBusHelpers,
     IDateValidator dateValidator)
 {
     _configuration     = configuration;
     _fitbitApiService  = fitbitApiService;
     _mapper            = mapper;
     _serviceBusHelpers = serviceBusHelpers;
     _dateValidator     = dateValidator;
 }