Example #1
0
 public void LooseItemAreaWeightChanged(int weightOfLooseItem)
 {
     ProductsDAO.GetRandomLooseProduct();
     currentProduct.SetWeight(weightOfLooseItem);
     scannedProducts.Add(currentProduct);
     baggingArea.SetExpectedWeight(scannedProducts.CalculateWeight());
     looseItemScale.Disable();
 }
Example #2
0
 // Operations
 public void LooseProductSelected()
 {
     looseItemScale.Enable();
     currentProduct = ProductsDAO.GetRandomLooseProduct();   //enable scale and get the current loose product    (just finding random one for now)
 }
Example #3
0
 // Operations
 public void LooseProductSelected()
 {
     ProductsDAO.GetRandomLooseProduct();
     looseItemScale.Enable();
 }