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