public DefaultController(IDriveAccountService siteService, IDriveService driveService, SettingService setting, ILogger <DefaultController> logger) { this.siteService = siteService; this.driveService = driveService; this.setting = setting; this.logger = logger; }
public DriveService(IDriveAccountService accountService, SiteContext siteContext, DriveContext driveContext) { this.accountService = accountService; graph = accountService.Graph; this.siteContext = siteContext; this.driveContext = driveContext; }
public SitesController(IDriveAccountService siteService, IDriveService driveService, SettingService setting) { this._siteService = siteService; this._driveService = driveService; this._setting = setting; }
public DriveService(IDriveAccountService accountService, DriveContext driveContext) { _accountService = accountService; _graph = accountService.Graph; _driveContext = driveContext; }
public AdminController(IDriveAccountService driveAccount, SettingService setting, TokenService tokenService) { _driveAccount = driveAccount; _setting = setting; _tokenService = tokenService; }
public AdminController(IDriveAccountService driveAccount, SettingService setting, TokenService tokenService) { this.driveAccount = driveAccount; this.setting = setting; this.tokenService = tokenService; }
public AdminController(IDriveAccountService driveAccount, SettingService setting) { this.driveAccount = driveAccount; this.setting = setting; }