Exemple #1
0
 public SideBarViewComponent(
     IAscentsService ascentsService,
     IBouldersService bouldersService,
     IApplicationUsersService usersService)
 {
     this.ascentsService  = ascentsService;
     this.bouldersService = bouldersService;
     this.usersService    = usersService;
 }
 public AscentsController(
     IAscentsService ascentsService,
     IBouldersService bouldersService,
     IGradesService gradesService,
     IStylesService stylesService)
 {
     this.ascentsService  = ascentsService;
     this.bouldersService = bouldersService;
     this.gradesService   = gradesService;
     this.stylesService   = stylesService;
 }
 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;
 }
Exemple #4
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;
 }
Exemple #5
0
 public GymsController(IGymsService gymsService, IBouldersService bouldersService)
 {
     this.gymsService     = gymsService;
     this.bouldersService = bouldersService;
 }