Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 4
0
 public PlaceTypeController(IPlaceTypeService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }