Пример #1
0
        public ActionResult <CommandReadDto> GetHallById(int id)
        {
            var hall = _repository.GetHallById(id);

            if (hall == null)
            {
                return(NotFound());
            }

            return(Ok(hall));
        }