Exemplo n.º 1
0
 public JsonResult PlaceOrder(int UserId, int TotalAmmount, int WithGST, string Coupon)
 {
     clsShaligram = new clsShaligram();
     if (clsShaligram.PlaceOrder(UserId, TotalAmmount, WithGST, Coupon))
     {
         return(Json("OK", JsonRequestBehavior.AllowGet));
     }
     return(Json("Bad", JsonRequestBehavior.AllowGet));
 }