Пример #1
0
        private PalletJob(int identifier, PalletJobType type)
        {
            Destination = null;
            PalletLocation = null;

            Identifier = identifier;
            Type = type;
        }
Пример #2
0
 public PalletJob(int identifier, Pallet palletLocation, PalletJobType type) : this(identifier, type)
 {
     PalletLocation = palletLocation;
 }
Пример #3
0
 public PalletJob(int identifier, Node destination, PalletJobType type) : this(identifier, type)
 {
     Destination = destination;
 }
Пример #4
0
 public PalletJob(int identifier, Pallet palletLocation, PalletJobType type) : this(identifier, type)
 {
     PalletLocation = palletLocation;
 }
Пример #5
0
 public PalletJob(int identifier, Node destination, PalletJobType type) : this(identifier, type)
 {
     Destination = destination;
 }