Esempio n. 1
0
        private PalletJob(int identifier, PalletJobType type)
        {
            Destination = null;
            PalletLocation = null;

            Identifier = identifier;
            Type = type;
        }
Esempio n. 2
0
 public PalletJob(int identifier, Pallet palletLocation, PalletJobType type) : this(identifier, type)
 {
     PalletLocation = palletLocation;
 }
Esempio n. 3
0
 public PalletJob(int identifier, Node destination, PalletJobType type) : this(identifier, type)
 {
     Destination = destination;
 }
Esempio n. 4
0
 public PalletJob(int identifier, Pallet palletLocation, PalletJobType type) : this(identifier, type)
 {
     PalletLocation = palletLocation;
 }
Esempio n. 5
0
 public PalletJob(int identifier, Node destination, PalletJobType type) : this(identifier, type)
 {
     Destination = destination;
 }