Esempio n. 1
0
        //---------------- ORDER PROCESS ------------------
        // PAY THE BLOCKED ORDER
        public ActionResult BlockingPayment(Int64 id, string CCNo, string CVV)
        {
            string s = PaymentDAO.BlockingOrderPaid(id, CCNo, CVV);

            return(Content(s));
        }