Skip to content

Instantly share code, notes, and snippets.

@andriybuday
Created November 27, 2016 23:09
Show Gist options
  • Save andriybuday/62d13afebe6706477fc1760344c2750e to your computer and use it in GitHub Desktop.
Save andriybuday/62d13afebe6706477fc1760344c2750e to your computer and use it in GitHub Desktop.
public class BusinessMappingProfile : Profile
{
public BusinessMappingProfile()
{
CreateMap<Cat, CatDTO>()
.ReverseMap();
CreateMap<Dog, DogDTO>()
.ReverseMap();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment