public AdminController( IAdminService adminService, IAuthorizationService authService, IAdminTipService tipService, IMapper mapper) { _adminService = adminService; _authService = authService; _tipService = tipService; _mapper = mapper; }
public CompetitorController( IClubService clubService, ICompetitorService competitorService, IAuthorizationService authService, IAdminTipService adminTipService, IMapper mapper) { _clubService = clubService; _competitorService = competitorService; _authService = authService; _adminTipService = adminTipService; _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; }