public BoatClassController(
     CoreServices.IClubService clubService,
     IBoatClassService classService,
     IAuthorizationService authService)
 {
     _clubService  = clubService;
     _classService = classService;
     _authService  = authService;
 }
Esempio n. 2
0
 public SeasonController(
     CoreServices.IClubService clubService,
     ISeasonService seasonService,
     IAuthorizationService authService)
 {
     _clubService   = clubService;
     _seasonService = seasonService;
     _authService   = authService;
 }
Esempio n. 3
0
 public AdminController(
     IAdminService adminService,
     IAuthorizationService authService,
     IAdminTipService tipService,
     IMapper mapper)
 {
     _adminService = adminService;
     _authService  = authService;
     _tipService   = tipService;
     _mapper       = mapper;
 }
Esempio n. 4
0
 public FleetController(
     CoreServices.IClubService clubService,
     IFleetService fleetService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService  = clubService;
     _fleetService = fleetService;
     _authService  = authService;
     _mapper       = mapper;
 }
Esempio n. 5
0
 public RegattaController(
     IRegattaService regattaService,
     Core.Services.IClubService clubService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _regattaService = regattaService;
     _clubService    = clubService;
     _authService    = authService;
     _mapper         = mapper;
 }
Esempio n. 6
0
 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;
 }
Esempio n. 9
0
 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;
 }
Esempio n. 10
0
 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;
 }
Esempio n. 11
0
 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;
 }
Esempio n. 12
0
 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;
 }