Exemplo n.º 1
0
 public bool InsertOrder(OrderBLL order)
 {
     return(orderDAL.InsertOrder(order));
 }
Exemplo n.º 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);
        }