Example #1
0
 public bool InsertOrder(OrderBLL order)
 {
     return(orderDAL.InsertOrder(order));
 }
Example #2
0
        // this will be used to add items to cart
        public bool InsertOrder(OrderBLL order)
        {
            int result = adpOrder.Insert(order.ItemId, order.ItemId, order.shippedAddr, order.Price, order.Shipped);

            return(result == 1);
        }