public CompetitionService(MongoRepository<Competition> competitionRepo, NodeService nodeService, MongoRepository<Team> teamRepo, PriceService priceService) { _competitionRepo = competitionRepo; _nodeService = nodeService; _teamRepo = teamRepo; _priceService = priceService; }
public CompetitionController(TeamService teamService, NodeService nodeService, CompetitionService competitionService) : base(competitionService) { _teamService = teamService; _nodeService = nodeService; }