Пример #1
0
 public StandingsAppService(IMatchChampionshipRepository matchChampionshipRepository,
                            ISubscriptionRepository subscriptionRepository,
                            IGroupChampionshipRepository groupChampionshipRepository,
                            IChampionshipRepository championshipRepository)
 {
     _matchChampionshipRepository = matchChampionshipRepository;
     _subscriptionRepository      = subscriptionRepository;
     _groupChampionshipRepository = groupChampionshipRepository;
     _championshipRepository      = championshipRepository;
 }
 public MatchChampionshipAppService(IMapper mapper, IMatchChampionshipRepository matchChampionshipRepository,
                                    ISubscriptionRepository subscriptionRepository,
                                    IChampionshipRepository championshipRepository,
                                    IGroupChampionshipRepository groupChampionshipRepository)
 {
     _matchChampionshipRepository = matchChampionshipRepository;
     _championshipRepository      = championshipRepository;
     _subscriptionRepository      = subscriptionRepository;
     _groupChampionshipRepository = groupChampionshipRepository;
     _mapper = mapper;
 }