Ejemplo n.º 1
0
        public JsonResult getNumberYear(string codeview)
        {
            int result = 0;
            //Khai báo lấy dữ liệu
            LVEDUCATION_BUS bus = new LVEDUCATION_BUS();

            //Thêm điều kiện lọc theo codeview nếu có nhập
            result = bus.getNumberYear(codeview);
            bus.CloseConnection();
            //Chỉ số đầu tiên của trang hiện tại (đã trừ -1)
            //Trả về client
            return(Json(new
            {
                data = result, //Danh sách
                ret = 0        //ok
            }, JsonRequestBehavior.AllowGet));
        }
Ejemplo n.º 2
0
        public JsonResult getlist()
        {
            List <LVEDUCATION_OBJ> li = null;
            //Khai báo lấy dữ liệu
            LVEDUCATION_BUS bus = new LVEDUCATION_BUS();

            //Thêm điều kiện lọc theo codeview nếu có nhập
            li = bus.getList();
            bus.CloseConnection();
            //Chỉ số đầu tiên của trang hiện tại (đã trừ -1)
            //Trả về client
            return(Json(new
            {
                data = li, //Danh sách
                ret = 0    //ok
            }, JsonRequestBehavior.AllowGet));
        }