Example #1
0
        //Vendor submit orders
        public ActionResult SubmitOrder(int id)
        {
            Vendor myvendor = new Vendor();

            myvendor.AcceptOrder(id);
            return(RedirectToAction("VendorOrders"));
        }