public Product(string Product_Name, int Avalible_Quantity, int Critcal_Quantity, float Oraginal_Price, float Sales_Price)
 {
     this.Product_Name1 = Product_Name;
     this.Avalible_Quantity1 = Avalible_Quantity;
     this.Critcal_Quantity1 = Critcal_Quantity;
     this.Oraginal_Price1 = Oraginal_Price;
     this.Sales_Price = Sales_Price;
     pro = new DAL.ProductDAC();
 }
 public Product()
 {
     pro = new DAL.ProductDAC();
 }