Ejemplo n.º 1
0
 public void copyFrom(Vendor another)
 {
     this.Inventory            = new List <ShopEntryInstance>();
     this.LastRefreshTimestamp = another.LastRefreshTimestamp;
     this.InventoryInspected   = another.InventoryInspected;
 }
Ejemplo n.º 2
0
 public Vendor(Vendor another)
 {
     this.Inventory = new List <ShopEntryInstance>();
     this.copyFrom(another);
 }