コード例 #1
0
ファイル: ReviewAppService.cs プロジェクト: xZemanova/src
        public void Update(UpdateReview input)
        {
            Review output = Mapper.Map <UpdateReview, Review>(input);

            _reviewManager.Update(output);
        }