public RegattaService(
     Core.Services.IClubService clubService,
     Core.Services.IRegattaService coreRegattaService,
     Core.Services.IScoringService coreScoringService,
     Core.Services.ISeasonService coreSeasonService,
     Core.Services.IFleetService coreFleetService,
     IMapper mapper)
 {
     _clubService        = clubService;
     _coreRegattaService = coreRegattaService;
     _coreScoringService = coreScoringService;
     _coreSeasonService  = coreSeasonService;
     _coreFleetService   = coreFleetService;
     _mapper             = mapper;
 }
Exemple #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;
 }
Exemple #3
0
    public RaceService(
        Core.Services.IClubService clubService,
        Core.Services.IRaceService coreRaceService,
        Core.Services.ISeriesService coreSeriesService,
        Core.Services.IScoringService coreScoringService,
        Core.Services.IRegattaService coreRegattaService,
        Core.Services.ISeasonService coreSeasonService,

        IWeatherService weatherService,
        ISpeechService speechService,
        IMapper mapper,
        ILogger <RaceService> logger)
    {
        _coreClubService    = clubService;
        _coreRaceService    = coreRaceService;
        _coreSeriesService  = coreSeriesService;
        _coreScoringService = coreScoringService;
        _coreRegattaService = coreRegattaService;
        _coreSeasonService  = coreSeasonService;
        _weatherService     = weatherService;
        _speechService      = speechService;
        _mapper             = mapper;
        _logger             = logger;
    }