Beispiel #1
0
        public IActionResult CancelWatchTable(int userId, int playerId)
        {
            try
            {
                bool result = _tableService.ShowCardsOf(userId, playerId);

                return(Ok(result));
            }

            catch (AppException ex)
            {
                return(BadRequest(new { message = ex.Message }));
            }
        }