public VehiclesController(IMapper _mapper, IVehicles vehicle, IMakes makes, IUnitOfWork unitOfWork) { mapper = _mapper; this.vehicle = vehicle; this.makes = makes; this.unitOfWork = unitOfWork; }
public MakesController(IMakes makes, IMapper mapper) { this.makes = makes; this.mapper = mapper; }