Ejemplo n.º 1
0
        public JsonResult tblcountry()
        {
            BusssinessLogic objbal = new BusssinessLogic();
            List <country>  lstgrp = new List <country>();

            try
            {
                lstgrp = objbal.blcountry();
            }
            catch (Exception ex)
            {
                throw ex;
            }

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