Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. using AutoMapper;
  2.  
  3. namespace AutomapperConfiguration.AutoMapperConfig.Profiles
  4. {
  5. public class PersonProfile : Profile
  6. {
  7. public PersonProfile()
  8. {
  9. CreateMap<Person, DisplayedPersonDto>();
  10. CreateMap<Person, NewsletterDto>();
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement