Beispiel #1
0
 public TourController(ITourService tourService, ICountryService countryService,
                       ICityService cityService, IHotelService hotelService,
                       IFoodTypeService foodTypeService, ITransportTypeService transportTypeService,
                       ITourTypeService tourTypeService, ICityFromService cityFromService,
                       IPlacementTypeService placementTypeService, IMapper mapper)
 {
     _tourService          = tourService;
     _countryService       = countryService;
     _cityService          = cityService;
     _hotelService         = hotelService;
     _foodTypeService      = foodTypeService;
     _transportTypeService = transportTypeService;
     _tourTypeService      = tourTypeService;
     _cityFromService      = cityFromService;
     _placementTypeService = placementTypeService;
     _mapper = mapper;
 }
Beispiel #2
0
 public TransportTypeController()
 {
     this._transportTypeService = new TransportTypeService();
 }
 public DeliveryService(UserManager <User> userManager, RobotsWorldContext context, IMapper mapper, ITransportTypeService transportTypeService)
     : base(userManager, context, mapper)
 {
     this.transportTypeService = transportTypeService;
 }
Beispiel #4
0
 public TransportTypeController(ITransportTypeService service, IMapper mapper) : base(service, mapper)
 {
 }