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