Skip to content

Instantly share code, notes, and snippets.

View fboiton's full-sized avatar

Fernandojosé Boiton fboiton

  • Guatemala
  • 04:11 (UTC -06:00)
View GitHub Profile
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) {
var acctPauseNote = string.Format("paused by the system because balance is {0:c2}", dAcctBalance);