public MatchController(IMatchService matchService, IMatchEventService matchEventService, IMatchGoalService matchGoalService, ITeamSeasonService teamSeasonService) { _matchService = matchService; _matchEventService = matchEventService; _matchGoalService = matchGoalService; _teamSeasonService = teamSeasonService; }
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; }
public MatchGoalController(IMatchGoalService matchGoalService) { _matchGoalService = matchGoalService; }
public MatchGoalDisplayViewComponent(IMatchGoalService matchGoalService, IPlayerService playerService) { _matchGoalService = matchGoalService; _playerService = playerService; }