Esempio n. 1
0
        public IMapper CreateMapper(IMapperEntity mapperEntity)
        {
            var config = new MapperConfiguration(cfg => {
                mapperEntity.Mapper(cfg);
            });

            return(config.CreateMapper());
        }
Esempio n. 2
0
 public MapperProfile(IMapperEntity mapperEntity)
 {
     this._mapperEntity = mapperEntity;
 }