Example #1
0
 public RacesController(
     Core.Services.IRaceService service,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _service     = service;
     _authService = authService;
     _mapper      = mapper;
 }
Example #2
0
 public ClubService(
     Core.Services.IClubService clubService,
     Core.Services.ISeasonService seasonService,
     Core.Services.IRaceService raceService,
     Core.Services.ISeriesService seriesService,
     Core.Services.IRegattaService regattaService,
     IMapper mapper)
 {
     _coreClubService    = clubService;
     _coreSeasonService  = seasonService;
     _coreRaceService    = raceService;
     _coreSeriesService  = seriesService;
     _coreRegattaService = regattaService;
     _mapper             = mapper;
 }