Exemplo n.º 1
0
 public RepairBillsController(IRepairBillService repairBillService,
                              IRepairsService repairService)
 {
     this.repairBillService = repairBillService;
     this.repairService     = repairService;
 }
Exemplo n.º 2
0
 public RepairsController(IRepairsService repairsService,
                          ICompanyService companyService)
 {
     this.repairsService = repairsService;
     this.companyService = companyService;
 }
 public RepairsController(IRepairsService service)
 {
     this.service = service;
 }