コード例 #1
0
        public IActionResult GetbyIdWithoutHistory(int id)
        {
            Puzzle puzzle = _puzzleRepository.GetPuzzleWithoutHistoryById(id);

            if (puzzle == null)
            {
                return(null);
            }
            return(Ok(puzzle));
        }