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; }
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; }