Beispiel #1
0
 public FocusExternalDataService(ICalendarServiceClient calendarServiceClient,
                                 ITravelServiceClient travelServiceClient, IFocusStore focusStore)
 {
     _calendarServiceClient = calendarServiceClient;
     _travelServiceClient   = travelServiceClient;
     _focusStore            = focusStore;
 }
 public PlannerService(IFocusCalendarSyncService focusCalendarSyncService, ITravelServiceClient travelServiceClient,
     IFocusStore focusStore)
 {
     _focusCalendarSyncService = focusCalendarSyncService;
     _travelServiceClient = travelServiceClient;
     _focusStore = focusStore;
 }
 public FocusDirectionsService(IFocusStore focusStore, IFocusPatchService focusService,
                               ITravelServiceClient travelServiceClient)
 {
     _focusStore          = focusStore;
     _focusService        = focusService;
     _travelServiceClient = travelServiceClient;
 }
Beispiel #4
0
 public DeviceDataService(IFocusStore focusStore,
                          IDeviceSyncStore deviceSyncStore,
                          ICalendarServiceClient calendarServiceClient,
                          ITravelServiceClient travelServiceClient)
 {
     _focusStore            = focusStore;
     _deviceSyncStore       = deviceSyncStore;
     _calendarServiceClient = calendarServiceClient;
     _travelServiceClient   = travelServiceClient;
 }
Beispiel #5
0
 public FocusUpdateService(IFocusStore focusStore,
                           ICalendarServiceClient calendarServiceClient,
                           ITravelServiceClient travelServiceClient,
                           IDigitLogger logger,
                           IEnumerable <IFocusSubscriber> focusSubscribers,
                           IFocusGeofenceService focusGeofenceService,
                           IOptions <DigitServiceOptions> options)
 {
     this.focusStore            = focusStore;
     this.calendarServiceClient = calendarServiceClient;
     this.travelServiceClient   = travelServiceClient;
     this.logger           = logger;
     this.focusSubscribers = focusSubscribers;
     _focusGeofenceService = focusGeofenceService;
     _options = options.Value;
 }
Beispiel #6
0
 public ScheduleService(ITravelServiceClient travelServiceClient, IScheduleStore scheduleStore)
 {
     this.travelServiceClient = travelServiceClient;
     this.scheduleStore       = scheduleStore;
 }