This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var acctPauseNote = string.Format("paused by the system because balance is {0:c2}", dAcctBalance); |