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