public BoatClassesController(
     CoreServices.IClubService clubService,
     CoreServices.IBoatClassService classService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService  = clubService;
     _classService = classService;
     _authService  = authService;
     _mapper       = mapper;
 }
예제 #2
0
 public AdminService(
     CoreServices.IClubService clubService,
     CoreServices.IScoringService scoringService,
     CoreServices.IRaceService raceService,
     CoreServices.IBoatClassService boatClassService,
     CoreServices.IFleetService fleetService,
     CoreServices.ISeasonService seasonService,
     IWeatherService weatherService,
     IPermissionService permissionService,
     IMapper mapper)
 {
     _coreClubService      = clubService;
     _coreScoringService   = scoringService;
     _coreRaceService      = raceService;
     _coreBoatClassService = boatClassService;
     _coreFleetService     = fleetService;
     _coreSeasonService    = seasonService;
     _weatherService       = weatherService;
     _permissionService    = permissionService;
     _mapper = mapper;
 }