예제 #1
0
 public VehiclesController(IMapper _mapper, IVehicles vehicle, IMakes makes, IUnitOfWork unitOfWork)
 {
     mapper          = _mapper;
     this.vehicle    = vehicle;
     this.makes      = makes;
     this.unitOfWork = unitOfWork;
 }
예제 #2
0
 public MakesController(IMakes makes, IMapper mapper)
 {
     this.makes  = makes;
     this.mapper = mapper;
 }