Example #1
0
 public Case_Load(Experior.Core.Loads.MeshInfo info) : base(info)
 {
     //case_Data.Parent = this;
     SSCCBarcode = string.Empty;
     SSCCBarcode = UniqueULID.ToString();
     AllCases.Add(this);
     Movable = false; // CN : Added to prevent mousewheel rotating the load
 }
Example #2
0
 public Tray(TrayInfo info) : base(info)
 {
     trayInfo = info;
     //case_Data.Parent = this;
     SSCCBarcode = string.Empty;
     SSCCBarcode = UniqueULID.ToString();
     AllCases.Add(this);
     Movable = false; // CN : Added to prevent mousewheel rotating the load
     if (!trayInfo.InStack)
     {
         SetupTray();
     }
 }
Example #3
0
 public EuroPallet(EuroPalletInfo info) : base(info)
 {
     euroPalletInfo = info;
     Color          = Color.Peru;
     //Pallet_Data.Parent = this;
     SSCCBarcode = string.Empty;
     SSCCBarcode = UniqueULID.ToString();
     AllPallets.Add(this);
     Movable = false;
     if (!euroPalletInfo.InStack)
     {
         SetupPallet();
     }
 }