Exemple #1
0
 public void setArbInfo(TempMatchInfo _info, List <RunnerInfo> _runners)
 {
     bookie  = _info.bookie;
     id      = _info.id;
     sport   = _info.sport;
     name    = _info.name;
     runners = _runners;
 }
Exemple #2
0
 public void setMatchInfo(TempMatchInfo info)
 {
     id    = info.id;
     sport = info.sport;
     name  = info.name;
     time  = info.time;
     td    = info.td;
     tm    = info.tm;
     ts    = info.ts;
     tt    = info.tt;
 }
Exemple #3
0
        public void setMatchInfoWrapper(TempMatchInfo info)
        {
            matchInfo.id    = info.id;
            matchInfo.sport = info.sport;
            matchInfo.name  = info.name;
            matchInfo.time  = info.time;
            matchInfo.td    = info.td;
            matchInfo.tm    = info.tm;
            matchInfo.ts    = info.ts;
            matchInfo.tt    = info.tt;

            response = true;
        }
Exemple #4
0
 public MatchInfoWrapper()
 {
     matchInfo = new TempMatchInfo();
     response  = true;
 }