public GoogleDriveCloudService(
     IGoogleDriveClient googleDriveClient,
     ISimpleDataStorage simpleDataStorage,
     IClock clock)
 {
     _googleDriveClient = googleDriveClient;
     _simpleDataStorage = simpleDataStorage;
     _clock             = clock;
 }
 public OneDriveCloudService(
     IOneDriveClient oneDriveClient,
     ISimpleDataStorage simpleDataStorage,
     IClock clock)
 {
     _oneDriveClient    = oneDriveClient;
     _simpleDataStorage = simpleDataStorage;
     _clock             = clock;
 }
 public NotificationRecordService(IIndexedDbRepo <NotificationRecord, long> notificationRepo,
                                  IClock clock,
                                  ISimpleDataStorage simpleDataStorage,
                                  IAfEventHub afEventHub)
 {
     _notificationRepo  = notificationRepo;
     _clock             = clock;
     _simpleDataStorage = simpleDataStorage;
     _afEventHub        = afEventHub;
 }
Beispiel #4
0
 public HandleUserClickIconJob(
     ILogger <HandleUserClickIconJob> logger,
     IAfEventHub afEventHub,
     ISimpleDataStorage simpleDataStorage,
     IClock clock)
 {
     _logger            = logger;
     _afEventHub        = afEventHub;
     _simpleDataStorage = simpleDataStorage;
     _clock             = clock;
 }