コード例 #1
0
ファイル: ReviewAppService.cs プロジェクト: xZemanova/src
        public GetReview GetReviewById(GetReviewId input)
        {
            var       getReview = _reviewManager.GetReviewById(input.Id);
            GetReview output    = Mapper.Map <Review, GetReview>(getReview);

            return(output);
        }