Exemplo n.º 1
0
 public List <Pallet> RequestPallet()
 {
     this.Status = PalletRequestStatus.Requested;
     return(SKUSupply.RequestLayer(RequiredLayerCount));
 }
Exemplo n.º 2
0
 public PalletRequest(List <SKUSupply> SKUSupplyList, string ItemCode, int RequiredLayerCount)
 {
     this.RequiredLayerCount = RequiredLayerCount;
     this.SKUSupply          = SKUSupplyList.Find(a => a.SKUData.ItemCode == ItemCode);
     this.Status             = PalletRequestStatus.InQueue;
 }