示例#1
0
 public bool SaveTurnDB(Guid MatchId, string Opponent, int currentRound)
 {
     DataLayer.Game.Match Match = new DataLayer.Game.Match();
     Match.SaveMove(Choice, MatchId, Opponent, currentRound);
     return true;
 }
示例#2
0
 public bool SaveTurnDB(string Choice, Guid MatchId, int currentRound)
 {
     DataLayer.Game.Match Match = new DataLayer.Game.Match();
     Match.SaveMove(Choice, MatchId, "Human", currentRound);
     return true;
 }