Esempio n. 1
0
 public DocumentPartageAppService(IMapper mapper, IDocumentPartageRepository repository, IUnitOfWork unitOfWork, IDocumentFileAppService appService) : base(mapper, repository, unitOfWork)
 {
     _mapper     = mapper;
     _repository = repository;
     _unitOfWork = unitOfWork;
     _appService = appService;
 }
Esempio n. 2
0
 public DocumentFileAppService(IMapper mapper, IGenericRepository <DocumentFile> dfRepository, IDocumentPartageRepository dpRepository, IUnitOfWork unitOfWork, IHostingEnvironment host)
 {
     _mapper       = mapper;
     _dfRepository = dfRepository;
     _dpRepository = dpRepository;
     _unitOfWork   = unitOfWork;
     _host         = host;
 }