Exemplo n.º 1
0
 public ScheduleController(ICarService carService, ICarDiagramService carDiagramService, IChannelService channelService,
                           IScheduleService scheduleService, IMapper mapper)
 {
     _carService        = carService;
     _carDiagramService = carDiagramService;
     _channelService    = channelService;
     _scheduleService   = scheduleService;
     _mapper            = mapper;
 }
Exemplo n.º 2
0
 public CarController(ICarService carService, ICarDiagramService carDiagramService, IMapper mapper)
 {
     _carService        = carService;
     _carDiagramService = carDiagramService;
     _mapper            = mapper;
 }