예제 #1
0
 public HabitualesController(IHabitualesRepo repo, IConductorRepo conductorRepo, IVehiculoRepo vehiculoRepo, IMapper mapper)
 {
     _repo          = repo;
     _conductorRepo = conductorRepo;
     _vehiculoRepo  = vehiculoRepo;
     _mapper        = mapper;
 }
예제 #2
0
 public VehiculosController(IVehiculoRepo repo, IInfraccionRepo infraccionRepo, IHabitualesRepo habitualRepo, IMapper mapper)
 {
     _repo           = repo;
     _mapper         = mapper;
     _infraccionRepo = infraccionRepo;
     _habitualRepo   = habitualRepo;
 }