Skip to content

Instantly share code, notes, and snippets.

@cprieto
Created October 5, 2010 18:35
Show Gist options
  • Save cprieto/612061 to your computer and use it in GitHub Desktop.
Save cprieto/612061 to your computer and use it in GitHub Desktop.
public class AccountMapperProfile : Profile {
public override void Configure() {
CreateMap<DomainEntity, DtoEntity>();
// NOTE: El resto de mapeos en esta unidad lógica....
}
}
//.... Luego en mi sistema
public class SampleController {
public SampleController(IMappingEngine mapper) {
}
}
// ... En mi caso uso una facility de Windsor, pero lo mismo se podría logar con cualquier otro IoC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment