Ejemplo n.º 1
0
 public Match(int i, Team t1, Team t2, string date)
 {
     ID = i;
     this.t1 = t1;
     this.t2 = t2;
     start = DateTime.ParseExact(date, "YYYY_MM_dd_HH_mm", CultureInfo.InvariantCulture);
 }
Ejemplo n.º 2
0
 public Match(int i, Team t1, Team t2, string date, string league, int bo, bool lan, string hltv, string csgo, Team fav, int t1p, int t2p, Mapset m, int amnt)
 {
     ID = i;
     this.t1 = t1;
     this.t2 = t2;
     start = DateTime.ParseExact(date, "YYYY_MM_dd_HH_mm", CultureInfo.InvariantCulture);
     this.league = league;
     this.bo = bo;
     this.lan = lan;
     this.urlHltv = hltv;
     this.urlCsgo = csgo;
     this.fav = fav;
     this.t1p = t1p;
     this.t2p = t2p;
     this.mapset = m;
     this.amntBet = amnt;
 }
Ejemplo n.º 3
0
 public Match(Team t1, Team t2)
 {
     this.t1 = t1;
     this.t2 = t2;
 }
Ejemplo n.º 4
0
 public Match(int i, Team t1, Team t2)
 {
     ID = i;
     this.t1 = t1;
     this.t2 = t2;
 }
Ejemplo n.º 5
0
 public void setTeamTwo(Team t)
 {
     t2 = t;
 }
Ejemplo n.º 6
0
 public void setTeamOne(Team t)
 {
     t1 = t;
 }
Ejemplo n.º 7
0
 public void setTeamFavorite(Team t)
 {
     fav = t;
 }