Пример #1
0
        public ActionResult <ReviewReadDto> GetById(int id)
        {
            var review = _reviewsRepo.GetReviewById(id);

            if (review != null)
            {
                return(Ok(_reviewMappper.Map <ReviewReadDto>(review)));
            }

            return(NotFound());
        }