Exemplo n.º 1
0
 public ReviewController(IReviewService service,
                         IRestaurantService restaurantService,
                         IAttractionService attractionService,
                         IRouteService routeService,
                         IHotelService hotelService,
                         IContextProviderFactory factory,
                         IEventService eventService) : base(service)
 {
     _restaurantService = restaurantService;
     _attractionService = attractionService;
     _routeService      = routeService;
     _hotelService      = hotelService;
     _factory           = factory;
     _eventService      = eventService;
 }
Exemplo n.º 2
0
 public RouteService(IContextProviderFactory contextProviderFactory,
                     IRouteAttractionService routeAttractionService,
                     IRouteAgeTypeService routeAgeTypeService,
                     IRouteSubjectNameService routeSubjectNameService,
                     IRoutePeopleTypeService routePeopleTypeService,
                     IRouteSubjectTypeService routeSubjectTypeService, IAttractionService attractionService) : base(contextProviderFactory)
 {
     _contextProviderFactory  = contextProviderFactory;
     _routeAttractionService  = routeAttractionService;
     _routeAgeTypeService     = routeAgeTypeService;
     _routeSubjectNameService = routeSubjectNameService;
     _routePeopleTypeService  = routePeopleTypeService;
     _routeSubjectTypeService = routeSubjectTypeService;
     _attractionService       = attractionService;
     _routeAgeTypeService     = routeAgeTypeService;
 }
Exemplo n.º 3
0
 public AttractionController(IAttractionService service, IMapper mapper) : base(service, mapper)
 {
 }
 public AttractionController(IAttractionService attractionService)
 {
     this.attractionService = attractionService;
 }
Exemplo n.º 5
0
 public AttractionControllerV2(IAttractionService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
Exemplo n.º 6
0
 public AttractionController(IAttractionService service)
 {
     _service = service;
 }