12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using AutoMapper;
- using GxPress.Entity.Missive;
- using GxPress.Entity.Note;
- using GxPress.Request.App.Note;
- using GxPress.Result.App.Missive;
- using GxPress.Result.App.Note;
- namespace GxPress.Mappings
- {
- class NoteMapping : Profile
- {
- public NoteMapping()
- {
- CreateMap<Note, NoteDetailResult>();
- }
- }
- }
|