Esempio n. 1
0
 public LiveStats(IMatchSummaryRepository matchSummaryRepository,
                  ITeamLiveStatusRepository teamLiveStatusRepository,
                  IPlayerKillRepository playerKillRepository,
                  ITeamRankingService teamRankingService,
                  IRanking ranking)
 {
     _matchSummaryRepository   = matchSummaryRepository;
     _teamLiveStatusRepository = teamLiveStatusRepository;
     _playerKillRepository     = playerKillRepository;
     _teamRankingService       = teamRankingService;
     _ranking = ranking;
 }
 public void Setup()
 {
     _playerKillRepository = Substitute.For <IPlayerKillRepository>();
     _sut = new TeamRankingService(_playerKillRepository);
 }