選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CommentMappingProfile.cs 439B

123456789101112131415161718
  1. using Diligent.WebAPI.Contracts.DTOs.Comment;
  2. namespace Diligent.WebAPI.Business.MappingProfiles
  3. {
  4. public class CommentMappingProfile:Profile
  5. {
  6. public CommentMappingProfile()
  7. {
  8. #region Models to DTO
  9. CreateMap<Comment, CommentViewDto>();
  10. #endregion
  11. #region DTO to Model
  12. CreateMap<CommentCreateDto, Comment>();
  13. #endregion
  14. }
  15. }
  16. }