Exemple #1
0
        public JsonResult GetDataToSelect(string key)
        {
            var obj   = new FACULTY_BUS();
            var model = obj.GetFacultyList(key);

            return(Json(model));
        }
Exemple #2
0
        public JsonResult GetDataByKey(string key)
        {
            var obj   = new FACULTY_BUS();
            var model = obj.GetFacultyList(key);

            return(Json(new { data = model }));
        }