public SitemapController(
     Core.Services.IClubService clubService,
     IConfiguration config)
 {
     _clubservice = clubService;
     _config      = config;
 }
Exemple #2
0
 public WeatherController(
     Core.Services.IClubService clubService,
     IWeatherService weatherService)
 {
     _clubService    = clubService;
     _weatherService = weatherService;
 }
 public SeasonsController(
     Core.Services.IClubService clubService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService = clubService;
     _authService = authService;
     _mapper      = mapper;
 }
 public CompetitorService(
     Core.Services.IClubService clubService,
     Core.Services.ICompetitorService competitorService,
     IMapper mapper)
 {
     _coreClubService       = clubService;
     _coreCompetitorService = competitorService;
     _mapper = mapper;
 }
Exemple #5
0
 public WeatherService(
     Core.Services.IClubService clubService,
     Core.Services.IWeatherService weatherService,
     Core.Services.IConversionService converter
     )
 {
     _coreClubService    = clubService;
     _coreWeatherService = weatherService;
     _converter          = converter;
 }
 public RegattaController(
     IRegattaService regattaService,
     Core.Services.IClubService clubService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _regattaService = regattaService;
     _clubService    = clubService;
     _authService    = authService;
     _mapper         = mapper;
 }
 public SeriesService(
     Core.Services.IClubService clubService,
     Core.Services.ISeriesService seriesService,
     Core.Services.IScoringService scoringService,
     Core.Services.ISeasonService seasonService,
     IMapper mapper)
 {
     _coreClubService    = clubService;
     _coreSeriesService  = seriesService;
     _coreScoringService = scoringService;
     _coreSeasonService  = seasonService;
     _mapper             = mapper;
 }
 public MergeCompetitorController(
     Core.Services.IClubService clubService,
     ICompetitorService competitorService,
     IAuthorizationService authService,
     UserManager <ApplicationUser> userManager,
     IMergeService mergeService)
 {
     _clubService       = clubService;
     _competitorService = competitorService;
     _authService       = authService;
     _userManager       = userManager;
     _mergeService      = mergeService;
 }
 public FleetService(
     Core.Services.IClubService clubService,
     Core.Services.IFleetService coreFleetService,
     Core.Services.ICompetitorService coreCompetitorService,
     IRegattaService regattaService,
     IMapper mapper)
 {
     _coreClubService       = clubService;
     _coreFleetService      = coreFleetService;
     _coreCompetitorService = coreCompetitorService;
     _regattaService        = regattaService;
     _mapper = mapper;
 }
Exemple #10
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;
 }
 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;
 }
 public RaceController(
     Core.Services.IClubService clubService,
     IRaceService raceService,
     IAuthorizationService authService,
     IAdminTipService adminTipService,
     UserManager <ApplicationUser> userManager,
     ISpeechService speechService,
     IMapper mapper)
 {
     _clubService     = clubService;
     _raceService     = raceService;
     _authService     = authService;
     _adminTipService = adminTipService;
     _userManager     = userManager;
     _speechService   = speechService;
     _mapper          = mapper;
 }
 public SeriesController(
     ISeriesService seriesService,
     Core.Services.IClubService clubService,
     IAuthorizationService authService,
     IAdminTipService adminTipService,
     ICsvService csvService,
     UserManager <ApplicationUser> userManager,
     IMapper mapper)
 {
     _seriesService   = seriesService;
     _clubService     = clubService;
     _authService     = authService;
     _adminTipService = adminTipService;
     _csvService      = csvService;
     _userManager     = userManager;
     _mapper          = mapper;
 }
 public ClubRequestService(
     Core.Services.IClubService clubService,
     Core.Services.IClubRequestService clubRequestService,
     Core.Services.IScoringService scoringService,
     Core.Services.IUserService userService,
     IEmailSender emailSender,
     IConfiguration configuration,
     IMemoryCache memoryCache,
     IMapper mapper)
 {
     _coreClubService        = clubService;
     _coreClubRequestService = clubRequestService;
     _coreScoringService     = scoringService;
     _coreUserService        = userService;
     _emailSender            = emailSender;
     _configuration          = configuration;
     _memoryCache            = memoryCache;
     _mapper = mapper;
 }
Exemple #15
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;
    }