Example #1
0
 public RouteController(IRouteService service,
                        IRoutePeopleTypeService routePeopleTypeService,
                        IRouteAgeTypeService routeAgeTypeService,
                        IRouteSubjectNameService routeSubjectNameService,
                        IRouteSubjectTypeService routeSubjectTypeService,
                        IRouteAttractionService routeAttractionService) : base(service)
 {
     _routePeopleTypeService  = routePeopleTypeService;
     _routeAgeTypeService     = routeAgeTypeService;
     _routeSubjectNameService = routeSubjectNameService;
     _routeSubjectTypeService = routeSubjectTypeService;
     _routeAttractionService  = routeAttractionService;
 }
Example #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;
 }