Esempio n. 1
0
        public ActionResult GetCustomerByID(int customerID)
        {
            BO_Customers obj = new BussinessObject.BO_Customers();

            obj = BL_Customer.GetCustomerByID(customerID);
            return(Json(obj, JsonRequestBehavior.AllowGet));
        }