Exemplo n.º 1
0
 public FileDomainService(IConfigService configService,
                          IFileLimitDomainService fileLimitDomainService,
                          IRepository <string, File> repository,
                          IS3Repository s3Repository,
                          IRepository <string, FileContent> fileContentRepository)
 {
     this._configService          = configService;
     this._fileLimitDomainService = fileLimitDomainService;
     this._repository             = repository;
     this._s3Repository           = s3Repository;
     this._fileContentRepository  = fileContentRepository;
 }
Exemplo n.º 2
0
 public FileAppService(IFileDomainService fileDomainService, IFileAuthService authService, IFileLimitDomainService fileLimitDomainService)
 {
     this._fileDomainService      = fileDomainService;
     this._fileAuthService        = authService;
     this._fileLimitDomainService = fileLimitDomainService;
 }