public GetReview GetReviewById(GetReviewId input) { var getReview = _reviewManager.GetReviewById(input.Id); GetReview output = Mapper.Map <Review, GetReview>(getReview); return(output); }