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