public ScheduleController(ICarService carService, ICarDiagramService carDiagramService, IChannelService channelService, IScheduleService scheduleService, IMapper mapper) { _carService = carService; _carDiagramService = carDiagramService; _channelService = channelService; _scheduleService = scheduleService; _mapper = mapper; }
public CarController(ICarService carService, ICarDiagramService carDiagramService, IMapper mapper) { _carService = carService; _carDiagramService = carDiagramService; _mapper = mapper; }