public List <Product> GetAllProducts()
 {
     return(aProductGateWay.GetAllProducts());
 }
 //  private int updatedQuantity;
 public ProductBLL()
 {
     aProductGateWay = new ProductGateWay();
     products        = aProductGateWay.GetAllProducts();
 }