Exemplo n.º 1
0
 public AppDocumentService(IRepository <Document> docRepo, IRepository <AppUser> userRepo, IDocumentFilteringService filteringService,
                           IMapper mapper)
 {
     this.docRepo          = docRepo;
     this.userRepo         = userRepo;
     this.mapper           = mapper;
     this.filteringService = filteringService;
 }
Exemplo n.º 2
0
 public AppReportsService(IReportingService reportingService, IRepository <Document> docRepo,
                          IRepository <DocumentHistoryEntry> historyRepo, IRepository <AppUser> userRepo,
                          IDocumentFilteringService filteringService, IMapper mapper)
 {
     this.reportingService = reportingService;
     this.docRepo          = docRepo;
     this.historyRepo      = historyRepo;
     this.userRepo         = userRepo;
     this.filteringService = filteringService;
     this.mapper           = mapper;
 }