예제 #1
0
 public GymsController(
     ICountriesService countriesService,
     ICitiesService citiesService,
     IGymsService gymsService,
     ICloudinaryService cloudinaryService)
 {
     this.countriesService  = countriesService;
     this.citiesService     = citiesService;
     this.gymsService       = gymsService;
     this.cloudinaryService = cloudinaryService;
 }
 public BouldersController(
     IBouldersService bouldersService,
     ICountriesService countriesService,
     ICitiesService citiesService,
     IGymsService gymsService,
     IGradesService gradesService,
     ICloudinaryService cloudinaryService)
 {
     this.bouldersService   = bouldersService;
     this.countriesService  = countriesService;
     this.citiesService     = citiesService;
     this.gymsService       = gymsService;
     this.gradesService     = gradesService;
     this.cloudinaryService = cloudinaryService;
 }
예제 #3
0
 public SearchController(
     ICountriesService countriesService,
     ICitiesService citiesService,
     IGymsService gymsService,
     IBouldersService bouldersService,
     ICategoriesService categoriesService,
     IPostsService postsService)
 {
     this.countriesService  = countriesService;
     this.citiesService     = citiesService;
     this.gymsService       = gymsService;
     this.bouldersService   = bouldersService;
     this.categoriesService = categoriesService;
     this.postsService      = postsService;
 }
예제 #4
0
 public GymsApiController(IGymsService gymsService)
 {
     this.gymsService = gymsService;
 }
예제 #5
0
 public GymsController(IGymsService gymsService)
 {
     _gymsService = gymsService;
 }
예제 #6
0
 public GymsController(IGymsService gymsService, IBouldersService bouldersService)
 {
     this.gymsService     = gymsService;
     this.bouldersService = bouldersService;
 }
예제 #7
0
 public CitiesController(ICitiesService citiesService, IGymsService gymsService)
 {
     this.citiesService = citiesService;
     this.gymsService   = gymsService;
 }
 public GymsController(IGymsService gymsService, ICountriesRepository countryRepository)
 {
     _gymsService       = gymsService;
     _countryRepository = countryRepository;
 }