コード例 #1
0
ファイル: SeasonService.cs プロジェクト: ckjcorrea/Newhl
 public SeasonService(ISeasonRepository seasonRepository, IPlayerSeasonRepository playerSeasonRepository)
 {
     this.SeasonRepository       = seasonRepository;
     this.PlayerSeasonRepository = playerSeasonRepository;
 }
コード例 #2
0
ファイル: PaymentService.cs プロジェクト: ckjcorrea/Newhl
 public PaymentService(IPlayerSeasonRepository playerSeasonRepository)
 {
     this.PlayerSeasonRepository = playerSeasonRepository;
 }