Пример #1
0
 public ItemBin()
 {
     Identifier = 0;
     Location   = new Coordinate();
 }
Пример #2
0
 public ItemBin(int id, int x, int y)
 {
     Identifier = id;
     Location   = new Coordinate(x, y);
 }