public BoatClassController( CoreServices.IClubService clubService, IBoatClassService classService, IAuthorizationService authService) { _clubService = clubService; _classService = classService; _authService = authService; }
public SeasonController( CoreServices.IClubService clubService, ISeasonService seasonService, IAuthorizationService authService) { _clubService = clubService; _seasonService = seasonService; _authService = authService; }
public AdminController( IAdminService adminService, IAuthorizationService authService, IAdminTipService tipService, IMapper mapper) { _adminService = adminService; _authService = authService; _tipService = tipService; _mapper = mapper; }
public FleetController( CoreServices.IClubService clubService, IFleetService fleetService, IAuthorizationService authService, IMapper mapper) { _clubService = clubService; _fleetService = fleetService; _authService = authService; _mapper = mapper; }
public RegattaController( IRegattaService regattaService, Core.Services.IClubService clubService, IAuthorizationService authService, IMapper mapper) { _regattaService = regattaService; _clubService = clubService; _authService = authService; _mapper = mapper; }
public UserController( IClubService clubService, IPermissionService permissionService, IAuthorizationService authService, UserManager <ApplicationUser> userManager, IMapper mapper) { _clubService = clubService; _permissionService = permissionService; _authService = authService; _userManager = userManager; _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 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 AccountController( UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, IEmailSender emailSender, IAuthorizationService authService, ILogger <AccountController> logger, IConfiguration configuration) { _userManager = userManager; _signInManager = signInManager; _emailSender = emailSender; _authService = authService; _logger = logger; _configuration = configuration; }
public AnnouncementController( CoreServices.IClubService clubService, IAnnouncementService announcementService, IAuthorizationService authService, UserManager <ApplicationUser> userManager, IHtmlSanitizer sanitizer, IMapper mapper) { _clubService = clubService; _announcementService = announcementService; _authService = authService; _userManager = userManager; _sanitizer = sanitizer; _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; }