Пример #1
0
 public GalleryPoolController(GalleryPoolService galleryPoolService, KeywordPoolService keywordPoolService, GalleryKeywordService galleryKeywordService, IHostingEnvironment environment)
 {
     _galleryPoolService    = galleryPoolService;
     _keywordPoolService    = keywordPoolService;
     _galleryKeywordService = galleryKeywordService;
     _environment           = environment;
 }
Пример #2
0
 public CategoriesController(CategoryService categoryService, CategoriesSlidersService categoriesSliderService, KeywordPoolService keywordPoolService, GalleryPoolService galleryPoolService, IHostingEnvironment environment)
 {
     _categoryService         = categoryService;
     _categoriesSliderService = categoriesSliderService;
     _environment             = environment;
     _keywordPoolService      = keywordPoolService;
     _galleryPoolService      = galleryPoolService;
 }
Пример #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;
 }
Пример #4
0
 public AnaSayfaController(KeywordPoolService keywordPoolService, SiteSettingsService siteSettingsService)
 {
     _keywordPoolService  = keywordPoolService;
     _siteSettingsService = siteSettingsService;
 }
Пример #5
0
 public StaticPagesController(StaticPagesService staticPagesService, GalleryPoolService galleryPoolService, KeywordPoolService keywordPoolService)
 {
     _galleryPoolService = galleryPoolService;
     _staticPagesService = staticPagesService;
     _keywordPoolService = keywordPoolService;
 }