Ejemplo n.º 1
0
        public string Bind_Group_View()
        {
            DataTable dt = new DataTable();
            string    jsonresult;

            if (Session["CompanyCD"] != null)
            {
                Group_ViewBL gvbl = new Group_ViewBL();
                dt = gvbl.Get_Group_View();
            }
            jsonresult = DataTableToJSONWithJSONNet(dt);
            return(jsonresult);
        }