コード例 #1
0
 public SeriesController(
     Core.Services.ISeriesService service,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _service     = service;
     _authService = authService;
     _mapper      = mapper;
 }
コード例 #2
0
 public SeasonsController(
     Core.Services.IClubService clubService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService = clubService;
     _authService = authService;
     _mapper      = mapper;
 }
コード例 #3
0
 public CompetitorsController(
     CoreServices.ICompetitorService service,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _service     = service;
     _authService = authService;
     _mapper      = mapper;
 }
コード例 #4
0
 public ScoringSystemController(
     IClubService clubService,
     IScoringService scoringService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService    = clubService;
     _scoringService = scoringService;
     _authService    = authService;
     _mapper         = mapper;
 }
コード例 #5
0
 public BoatClassesController(
     CoreServices.IClubService clubService,
     CoreServices.IBoatClassService classService,
     IAuthorizationService authService,
     IMapper mapper)
 {
     _clubService  = clubService;
     _classService = classService;
     _authService  = authService;
     _mapper       = mapper;
 }