Beispiel #1
0
 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;
 }
Beispiel #2
0
 public BetListProvider(IDataService dataService, IBetListClient betListClient)
 {
     this.dataService   = dataService;
     this.betListClient = betListClient;
 }