public Monitor_Google_Spreadsheet_Changes_v1(
     ICrateManager crateManager,
     IGoogleIntegration googleIntegration,
     IGoogleSheet googleSheet,
     IGoogleGDrivePolling googleGDrivePolling)
     : base(crateManager, googleIntegration)
 {
     _googleSheet         = googleSheet;
     _googleGDrivePolling = googleGDrivePolling;
 }
Beispiel #2
0
 public GoogleSheet(IGoogleIntegration googleIntegration, IGoogleDrive googleDrive)
 {
     _googleIntegration = googleIntegration;
     _googleDrive       = googleDrive;
 }
 public GoogleGmailPolling(IGoogleIntegration _googleIntegration, IHubEventReporter reporter)
 {
     this._googleIntegration = _googleIntegration;
     this._reporter          = reporter;
 }
Beispiel #4
0
 public Get_Google_Sheet_Data_v1(ICrateManager crateManager, IGoogleIntegration googleIntegration, IGoogleSheet googleSheet)
     : base(crateManager, googleIntegration)
 {
     _googleApi = googleSheet;
 }
Beispiel #5
0
 public Monitor_Form_Responses_v1(ICrateManager crateManager, IGoogleIntegration googleIntegration, IGoogleAppsScript googleAppsScript, IGoogleDrive googleDrive)
     : base(crateManager, googleIntegration)
 {
     _googleDrive      = googleDrive;
     _googleAppsScript = googleAppsScript;
 }
Beispiel #6
0
 public Save_To_Google_Sheet_v1(ICrateManager crateManager, IGoogleIntegration googleIntegration, IGoogleSheet googleSheet)
     : base(crateManager, googleIntegration)
 {
     _googleSheet = googleSheet;
 }
Beispiel #7
0
 public Monitor_Gmail_Inbox_v1(ICrateManager crateManager, IGoogleIntegration googleIntegration, IGoogleGmailPolling _gmailPolling)
     : base(crateManager, googleIntegration)
 {
     _gmailPollingService = _gmailPolling;
 }
Beispiel #8
0
 public AuthenticationController(IHubLoggerService loggerService, IRestfulServiceClient restfulServiceClient)
 {
     _loggerService     = loggerService;
     _googleIntegration = new GoogleIntegration(restfulServiceClient);
 }
Beispiel #9
0
 protected BaseGoogleTerminalActivity(ICrateManager crateManager, IGoogleIntegration googleIntegration)
     : base(crateManager)
 {
     _googleIntegration = googleIntegration;
 }