public ActionResult Delete(ThanhTichEntity thanhTich)
        {
            ThanhTichServices service = new ThanhTichServices();

            try
            {
                if (service.Delete(thanhTich))
                    return Json(RenderResult.RequestCompleted(ViewData, "Xóa thành công"));

                return Json(RenderResult.RequestCompleted(ViewData, "Xóa không thành công"));
            }
            catch (Exception e)
            {
                System.Console.WriteLine(e.ToString());
                return Json(RenderResult.RequestError(ViewData, "Lỗi xảy ra"));
            }

        }
        public ActionResult DeleteWithID(string id)
        {
            ThanhTichServices service = new ThanhTichServices();

            if (id == null)
                return Json(RenderResult.RequestError(ViewData, "Đối số không hợp lệ"));

            List<int> ids = StringUtility.SplitIdEntity(id);

            try
            {
                for(int i = 0; i < ids.Count; ++i)
                {
                    service.Delete(ids[i]);
                }
                

                return Json(RenderResult.RequestCompleted(ViewData, "Xóa thành công"));
            }
            catch(Exception e)
            {
                System.Console.WriteLine(e.ToString());
                return Json(RenderResult.RequestError(ViewData, "Lỗi xảy ra"));
            }

        }