Example #1
0
 public FileAppService(IFileDomainService fileDomainService,
                       IFileAuthService authService,
                       IConfigService configService)
 {
     this._fileDomainService = fileDomainService;
     this._configService     = configService;
     this._fileAuthService   = authService;
 }
Example #2
0
 public JwtController(IFileAuthService authService, IConfigService configService)
 {
     this._fileAuthService = authService;
     this._configService   = configService;
 }
Example #3
0
 public FileAppService(IFileDomainService fileDomainService, IFileAuthService authService, IFileLimitDomainService fileLimitDomainService)
 {
     this._fileDomainService      = fileDomainService;
     this._fileAuthService        = authService;
     this._fileLimitDomainService = fileLimitDomainService;
 }