Ejemplo n.º 1
0
        public JsonResult tableDevisiondata(string tblname, string Column1, string Column2)
        {
            BusssinessLogic objbal = new BusssinessLogic();

            List <Divisions> lstgrp = new List <Divisions>();

            try
            {
                lstgrp = objbal.BltblDivisiondata(tblname, Column1, Column2);
            }
            catch (Exception ex)
            {
                throw ex;
            }

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