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