Пример #1
0
 public VehiculosController(IVehiculoRepo repo, IInfraccionRepo infraccionRepo, IHabitualesRepo habitualRepo, IMapper mapper)
 {
     _repo           = repo;
     _mapper         = mapper;
     _infraccionRepo = infraccionRepo;
     _habitualRepo   = habitualRepo;
 }
Пример #2
0
 public InfraccionesController(IInfraccionRepo repo)
 {
     _repo = repo;
 }