Пример #1
0
 public CanaryController(IFitbitService fitbitService, IWithingsService withingsService, ISheetsService sheetsService, IHealthRepository healthRepository)
 {
     _fitbitService    = fitbitService;
     _withingsService  = withingsService;
     _sheetsService    = sheetsService;
     _healthRepository = healthRepository;
 }
Пример #2
0
 public Importer(ILogger logger, IHealthService healthService, ICalendar calendar, IFitbitService fitbitService, IWithingsService withingsService, ISheetsService sheetsService)
 {
     _logger          = logger;
     _healthService   = healthService;
     _calendar        = calendar;
     _fitbitService   = fitbitService;
     _withingsService = withingsService;
     _sheetsService   = sheetsService;
 }
Пример #3
0
 public WithingsController(ILogger logger, IWithingsService withingsService, IHealthService healthService)
 {
     _logger          = logger;
     _withingsService = withingsService;
     _healthService   = healthService;
 }