ArmedCards.BusinessLogic.AppServices.GameRound.Insert.Execute C# (CSharp) Метод

Execute() публичный Метод

Insert new game round
public Execute ( Int32 gameID, Entities commander ) : Entities.GameRound
gameID System.Int32 The game ID for the new round
commander Entities The round's card commander
Результат Entities.GameRound
        public Entities.GameRound Execute(Int32 gameID, Entities.User commander)
        {
            return _insertGameRound.Execute(gameID, commander);
        }