Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using AutoMapper;
  2.  
  3. namespace AutomapperConfiguration.AutoMapperConfig
  4. {
  5. public class AutoMapperConfiguration : IAutoMapperConfiguration
  6. {
  7. public MapperConfiguration Configure()
  8. {
  9. var config = new MapperConfiguration(cfg =>
  10. {
  11. // HERE YOU CAN CONFIGURE YOUR MAPPINGS
  12. });
  13. return config;
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement