예제 #1
0
 public FleetService(
     Core.Services.IClubService clubService,
     Core.Services.IFleetService coreFleetService,
     Core.Services.ICompetitorService coreCompetitorService,
     IRegattaService regattaService,
     IMapper mapper)
 {
     _coreClubService       = clubService;
     _coreFleetService      = coreFleetService;
     _coreCompetitorService = coreCompetitorService;
     _regattaService        = regattaService;
     _mapper = mapper;
 }
예제 #2
0
 public RegattaService(
     Core.Services.IClubService clubService,
     Core.Services.IRegattaService coreRegattaService,
     Core.Services.IScoringService coreScoringService,
     Core.Services.ISeasonService coreSeasonService,
     Core.Services.IFleetService coreFleetService,
     IMapper mapper)
 {
     _clubService        = clubService;
     _coreRegattaService = coreRegattaService;
     _coreScoringService = coreScoringService;
     _coreSeasonService  = coreSeasonService;
     _coreFleetService   = coreFleetService;
     _mapper             = mapper;
 }