You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommentMappingProfile.cs 330B

1234567891011121314
  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. }
  12. }
  13. }