Esempio n. 1
0
 /// <summary>
 /// Serialize the results of hte game.
 /// </summary>
 /// <param name="result"></param>
 public void SerializeGameResult(GameResult result)
 {
     Serializer.SerializeNow(result);
     DataAdapter.Insert(this.serResults);
 }
Esempio n. 2
0
 /// <summary>
 /// Return a string array that hold all the games in tha database.
 /// </summary>
 /// <returns></returns>
 public static string[] CreateResultList()
 {
     return(DataAdapter.Pull());
 }