Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
64
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 CarProfile : Profile
  6. {
  7. public CarProfile()
  8. {
  9. CreateMap<Car, DisplayedCarDto>();
  10. CreateMap<Car, CarPerformanceDto>().ReverseMap();
  11. }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement