Exemple #1
0
 /// <summary>
 /// This method is used to update a record in the ProductORder table
 /// </summary>
 /// <param name="po">This paramter is of type ProductOrder, and holds all the details that
 /// need to be updated</param>
 public void UpdateProductOrder(Common.ProductOrder po)
 {
     new DAProductOrder().UpdateProductOrder(po);
 }
Exemple #2
0
 /// <summary>
 /// This method is used to Delete a record from the ProductOrder list
 /// </summary>
 /// <param name="productOrder">This parameter is of type Product Order and holds all the details of the
 /// record that is going to be deleted</param>
 public void DeleteProductOrder(Common.ProductOrder productOrder)
 {
     new DAProductOrder().DeleteProductOrder(productOrder);
 }
Exemple #3
0
 /// <summary>
 /// This method is used to create a new record of type ProductOrder
 /// </summary>
 /// <param name="productOrder">This parameter is of type ProductOrder and holds all the details that
 /// need to be stored into the database relating to the Product Order</param>
 public void addProductOrder(Common.ProductOrder productOrder)
 {
     new DAProductOrder().addProductOrder(productOrder);
 }
Exemple #4
0
 public void addProductOrder(Common.ProductOrder productOrder)
 {
     base.Channel.addProductOrder(productOrder);
 }
Exemple #5
0
 public void UpdateProductOrder(Common.ProductOrder po)
 {
     base.Channel.UpdateProductOrder(po);
 }
Exemple #6
0
 public void DeleteProductOrder(Common.ProductOrder productOrder)
 {
     base.Channel.DeleteProductOrder(productOrder);
 }