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