public EmployeeController(IEmployeesRepository empRepo, ITractorRepository truRepo, IDriverTractorHistoryRepository dtRepo)
 {
     this.empRepo = empRepo;
     this.truRepo = truRepo;
     this.dtRepo  = dtRepo;
 }
Пример #2
0
 public TractorController(ITractorRepository repo)
 {
     this.repo = repo;
 }