public MatchServiceTest() { _matchService = new MatchService(GetInMemoryTeamRepository()); _rafflesService = new RafflesService(GetInMemoryTeamRepository()); _teamRepository = GetInMemoryTeamRepository(); finals = new List <Team>(); }
public RafflesAppService(IRafflesService rafflesService) { _rafflesService = rafflesService; }
public RafflesServiceTest() { _rafflesService = new RafflesService(GetInMemoryTeamRepository()); _teamRepository = GetInMemoryTeamRepository(); }