NoteMapping.cs 414 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using AutoMapper;
  5. using GxPress.Entity.Missive;
  6. using GxPress.Entity.Note;
  7. using GxPress.Request.App.Note;
  8. using GxPress.Result.App.Missive;
  9. using GxPress.Result.App.Note;
  10. namespace GxPress.Mappings
  11. {
  12. class NoteMapping : Profile
  13. {
  14. public NoteMapping()
  15. {
  16. CreateMap<Note, NoteDetailResult>();
  17. }
  18. }
  19. }