Example #1
0
 public CarDetalisController(ICarDetalistRepo _repo, ILocationRepo _locationRepo, ICarRepo _carRepo)
 {
     repo         = _repo;
     repoLocation = _locationRepo;
     repoCar      = _carRepo;
 }
Example #2
0
 public OrderController(IOrderRepo _repo, ICarDetalistRepo _repositoryCarDetal)
 {
     repository         = _repo;
     repositoryCarDetal = _repositoryCarDetal;
 }