Example #1
0
 public Storage(string name, string loc, int area)
 {
     Name     = name;
     Location = loc;
     Area     = area;
     Id       = Guid.NewGuid();
     PlacesTrading.Add(Id, this);
 }
Example #2
0
 public Shop(string name, string loc)
 {
     Name     = name;
     Location = loc;
     Id       = Guid.NewGuid();
     //Shops.Add(Id, this);
     PlacesTrading.Add(Id, this);
 }
Example #3
0
 public void Remove()
 {
     PlacesTrading.Remove(Id);
 }
Example #4
0
 public void Remove()
 {
     //Shops.Remove(Id);
     PlacesTrading.Remove(Id);
 }