Пример #1
0
 public ReportController(
     IIncomeReportRepository reportRepository,
     IEmployeeRepository employeeRepository,
     IImportOrderRepository importRepository,
     IOrderRepository orderRepository)
 {
     this.reportRepo   = reportRepository;
     this.employeeRepo = employeeRepository;
     this.importRepo   = importRepository;
     this.orderRepo    = orderRepository;
 }