public PlannerService(IFocusCalendarSyncService focusCalendarSyncService, ITravelServiceClient travelServiceClient,
     IFocusStore focusStore)
 {
     _focusCalendarSyncService = focusCalendarSyncService;
     _travelServiceClient = travelServiceClient;
     _focusStore = focusStore;
 }
Exemple #2
0
 public FocusService(IDigitLogger logger,
                     IFocusCalendarSyncService focusCalendarSyncService,
                     ILocationService locationService,
                     IFocusUpdateService focusUpdateService,
                     IFocusNotificationService focusNotificationService,
                     IFocusStore focusStore)
 {
     this.logger = logger;
     this.focusCalendarSyncService = focusCalendarSyncService;
     this.locationService          = locationService;
     this.focusUpdateService       = focusUpdateService;
     _focusNotificationService     = focusNotificationService;
     _focusStore = focusStore;
 }