Пример #1
0
 public ToDictDataUpdate(IAttractionPlaceTypeService attractionPlaceTypeService,
                         IPlaceTypeService placeTypeService,
                         IAgeTypeService ageTypeService,
                         ICateringTypeService cateringTypeService,
                         ICityService cityService,
                         ICuisineTypeService cuisineTypeService,
                         IDenyTypeService denyTypeService,
                         IDistrictService districtTypeService,
                         IEquipmentTypeService equipmentTypeService,
                         IHousingTypeService housingTypeService,
                         IPeopleTypeService peopleTypeService,
                         IServiceTypeService serviceTypeService,
                         ISubjectNameService subjectNameService,
                         ISubjectService subjectService,
                         ISubjectTypeService subjectTypeService,
                         IConfiguration configuration)
 {
     _attractionPlaceTypeService = attractionPlaceTypeService;
     _placeTypeService           = placeTypeService;
     _ageTypeService             = ageTypeService;
     _cateringTypeService        = cateringTypeService;
     _cityService          = cityService;
     _cuisineTypeService   = cuisineTypeService;
     _denyTypeService      = denyTypeService;
     _districtTypeService  = districtTypeService;
     _equipmentTypeService = equipmentTypeService;
     _housingTypeService   = housingTypeService;
     _peopleTypeService    = peopleTypeService;
     _serviceTypeService   = serviceTypeService;
     _subjectNameService   = subjectNameService;
     _subjectService       = subjectService;
     _subjectTypeService   = subjectTypeService;
     _configuration        = configuration;
 }
Пример #2
0
 public PlaceReviewService(IPlaceRepository placeRepository,
                           IPlaceReviewRepository placeReviewRepository,
                           IPlaceService placeService,
                           IReviewRepository reviewRepository,
                           IPlaceTypeService placeTypeService,
                           IImageService imageService)
 {
     this.placeRepository       = placeRepository;
     this.placeReviewRepository = placeReviewRepository;
     this.placeService          = placeService;
     this.reviewRepository      = reviewRepository;
     this.placeTypeService      = placeTypeService;
     this.imageService          = imageService;
 }
Пример #3
0
 public DishReviewService(IDishReviewRepository dishReviewRepository,
                          IReviewRepository reviewRepository,
                          IDishRepository dishRepository,
                          ITagService tagsseService,
                          IPlaceService placeService,
                          IDishService dishService,
                          IImageService imageService,
                          IPlaceTypeService placeTypeService)
 {
     this.dishReviewRepository = dishReviewRepository;
     this.reviewRepository     = reviewRepository;
     this.dishRepository       = dishRepository;
     this.tagsseService        = tagsseService;
     this.placeService         = placeService;
     this.dishService          = dishService;
     this.imageService         = imageService;
     this.placeTypeService     = placeTypeService;
 }
Пример #4
0
 public PlaceTypeController(IPlaceTypeService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }