Exemplo n.º 1
0
 public Game(int _id, GamesCollection collection)
 {
     client          = new WebClient();
     GameId          = _id;
     PlayedFor       = new TimeSpan();
     this.collection = collection;
 }
Exemplo n.º 2
0
 public Game(GamesCollection collection)
 {
     client          = new WebClient();
     title           = "Not Populated Yet";
     status          = "Not Ready";
     PlayedFor       = new TimeSpan();
     this.collection = collection;
 }