Beispiel #1
0
 public MatchController(IMatchService matchService,
                        IMatchEventService matchEventService,
                        IMatchGoalService matchGoalService,
                        ITeamSeasonService teamSeasonService)
 {
     _matchService      = matchService;
     _matchEventService = matchEventService;
     _matchGoalService  = matchGoalService;
     _teamSeasonService = teamSeasonService;
 }
Beispiel #2
0
 public MatchService(IPlayerService playerService,
                     IMatchQuery matchQuery,
                     IMatchGoalService matchGoalService,
                     IMatchEventService matchEventService,
                     IPlayerStatsService playerStatsService,
                     INewsService newsService,
                     ITeamService teamService)
 {
     _matchGoalService   = matchGoalService;
     _playerService      = playerService;
     _matchQuery         = matchQuery;
     _playerStatsService = playerStatsService;
     _matchEventService  = matchEventService;
     _newsService        = newsService;
     _teamService        = teamService;
 }
Beispiel #3
0
 public MatchGoalController(IMatchGoalService matchGoalService)
 {
     _matchGoalService = matchGoalService;
 }
Beispiel #4
0
 public MatchGoalDisplayViewComponent(IMatchGoalService matchGoalService, IPlayerService playerService)
 {
     _matchGoalService = matchGoalService;
     _playerService    = playerService;
 }