public DataService(IBetListClient client, IConvert convert, ITournamentClient tournamentClient, ITeamClient teamClient, IMatchService matchService) { this.betListClient = client; this.convert = convert; this.tournamentClient = tournamentClient; this.teamClient = teamClient; this.matchService = matchService; }
public BetListProvider(IDataService dataService, IBetListClient betListClient) { this.dataService = dataService; this.betListClient = betListClient; }