public CategoryController(TourCategoriesService tourCategoryService, TourService tourService, CategoryService categoryService, CategoriesSlidersService categoriesSliderService, GalleryPoolService galleryPoolService)
 {
     _categoryService         = categoryService;
     _categoriesSliderService = categoriesSliderService;
     _galleryPoolService      = galleryPoolService;
     _tourService             = tourService;
     _tourCategoryService     = tourCategoryService;
 }
Exemple #2
0
 public TourController(TourGalleriesService tourGalleryService, TourService tourService, TourPlanService tourPlanService, TourCategoriesService tourCategoriesService, CategoryService categoriesService)
 {
     _tourService           = tourService;
     _tourPlanService       = tourPlanService;
     _tourCategoriesService = tourCategoriesService;
     _categoriesService     = categoriesService;
     _tourGalleryService    = tourGalleryService;
 }
Exemple #3
0
 public TourController(TourPlanService tourPlanListService, TourService tourService, CategoryService categoryService, TourCategoriesService tourCategoryService, KeywordPoolService keywordPoolService, GalleryKeywordService galleryKeywordService, GalleryPoolService galleryPoolService, TourGalleriesService tourGalleryService)
 {
     _tourService           = tourService;
     _categoryService       = categoryService;
     _tourCategoryService   = tourCategoryService;
     _keywordPoolService    = keywordPoolService;
     _galleryKeywordService = galleryKeywordService;
     _galleryPoolService    = galleryPoolService;
     _tourGalleryService    = tourGalleryService;
     _tourPlanListService   = tourPlanListService;
 }