public RepairBillsController(IRepairBillService repairBillService,
                              IRepairsService repairService)
 {
     this.repairBillService = repairBillService;
     this.repairService     = repairService;
 }
Exemple #2
0
 public RepairsController(IRepairsService repairsService,
                          ICompanyService companyService)
 {
     this.repairsService = repairsService;
     this.companyService = companyService;
 }
 public RepairsController(IRepairsService service)
 {
     this.service = service;
 }