Exemplo n.º 1
0
 public ItemModel(RomanApp.Service.Entities.Item entity)
     : this()
 {
     Map(entity);
 }
Exemplo n.º 2
0
 public void Map(RomanApp.Service.Entities.Item entity)
 {
     base.Map(entity);
     Name   = entity.Name;
     Amount = entity.Amount;
 }