Example #1
0
        public JsonResult listLoaiTT()
        {
            var result = practiceService.GetAllLoaiTT();

            return(Json(result, JsonRequestBehavior.AllowGet));
        }
Example #2
0
        public JsonResult listLoaiTT(long?id = null)
        {
            PracticeService thucTapService = new PracticeService();

            return(Json(thucTapService.GetAllLoaiTT(), JsonRequestBehavior.AllowGet));
        }