Esempio n. 1
0
        public JsonResult GetdataByCompanyID(string CustomerID)
        {
            BusssinessLogic  objbal       = new BusssinessLogic();
            List <customers> lstcustomers = new List <customers>();

            try
            {
                lstcustomers = objbal.BlGetdataByCompanyID(CustomerID);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(Json(lstcustomers, JsonRequestBehavior.AllowGet));
        }