コード例 #1
0
 public SeasonController(
     CoreServices.IClubService clubService,
     ISeasonService seasonService,
     IAuthorizationService authService)
 {
     _clubService   = clubService;
     _seasonService = seasonService;
     _authService   = authService;
 }
コード例 #2
0
 public BoatClassController(
     CoreServices.IClubService clubService,
     IBoatClassService classService,
     IAuthorizationService authService)
 {
     _clubService  = clubService;
     _classService = classService;
     _authService  = authService;
 }
コード例 #3
0
 public FleetsController(
     CoreServices.IClubService clubService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService = clubService;
     _authService = authService;
     _mapper      = mapper;
 }
コード例 #4
0
 public BoatClassesController(
     CoreServices.IClubService clubService,
     CoreServices.IBoatClassService classService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService  = clubService;
     _classService = classService;
     _authService  = authService;
     _mapper       = mapper;
 }
コード例 #5
0
    public HomeController(
        CoreServices.IClubService clubService,
        IClubService webClubService,
        IRegattaService regattaService,
        AppVersionInfo versionService)

    {
        _clubservice    = clubService;
        _webClubService = webClubService;
        _regattaService = regattaService;
        _versionService = versionService;
    }
コード例 #6
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;
 }
コード例 #7
0
ファイル: AdminService.cs プロジェクト: SailScores/SailScores
 public AdminService(
     CoreServices.IClubService clubService,
     CoreServices.IScoringService scoringService,
     CoreServices.IRaceService raceService,
     CoreServices.IBoatClassService boatClassService,
     CoreServices.IFleetService fleetService,
     CoreServices.ISeasonService seasonService,
     IWeatherService weatherService,
     IPermissionService permissionService,
     IMapper mapper)
 {
     _coreClubService      = clubService;
     _coreScoringService   = scoringService;
     _coreRaceService      = raceService;
     _coreBoatClassService = boatClassService;
     _coreFleetService     = fleetService;
     _coreSeasonService    = seasonService;
     _weatherService       = weatherService;
     _permissionService    = permissionService;
     _mapper = mapper;
 }