public bool Delete(TrinhDoLyLuanEntity trinhdo)
 {
     try
     {
         this.m_UnitOfWork.TrinhDoLyLuanRepository.Delete(trinhdo);
         return true;
     }
     catch (Exception e)
     {
         System.Console.WriteLine(e.ToString());
         return false;
     }
 }
        public bool Create(TrinhDoLyLuanEntity TrinhDoLyLuanEntity)
        {
            using (var scope = new TransactionScope())
            {
                var trinhdo = new TrinhDoLyLuans
                {
                    Id = TrinhDoLyLuanEntity.Id,
                    MaQuyDinh = TrinhDoLyLuanEntity.MaQuyDinh,
                    TenTrinhDo = TrinhDoLyLuanEntity.TenTrinhDo
                };

                m_UnitOfWork.TrinhDoLyLuanRepository.Insert(trinhdo);
                m_UnitOfWork.Save();
                scope.Complete();
                return true;
            }
        }
        /// only return json to client
        public ActionResult Create(TrinhDoLyLuanEntity TrinhDoLyLuan)
        {
            TrinhDoLyLuanServices service = new TrinhDoLyLuanServices();

            if (TrinhDoLyLuan == null)
            {
                RenderResult.RequestError(ViewData, "Lỗi đối số không hợp lệ");
                return Json(JsonConvert.SerializeObject(ViewData));
            }

            if (service.Create(TrinhDoLyLuan))
            {
                return Json(RenderResult.RequestCompleted(ViewData, "Thêm trình độ thành công"));
            }
            else
            {

                return Json(RenderResult.RequestCompleted(ViewData, "Lỗi khi thêm trình độ"));
            }
        }
        public bool Update(TrinhDoLyLuanEntity TrinhDoLyLuanEntity)
        {
            var success = false;
            if (TrinhDoLyLuanEntity != null)
            {
                using (var scope = new TransactionScope())
                {
                    var trinhdo = m_UnitOfWork.TrinhDoLyLuanRepository.GetByID(TrinhDoLyLuanEntity.Id);
                    if (trinhdo != null)
                    {

                        trinhdo.Id = TrinhDoLyLuanEntity.Id;
                        trinhdo.TenTrinhDo = TrinhDoLyLuanEntity.TenTrinhDo;
                        trinhdo.MaQuyDinh = TrinhDoLyLuanEntity.MaQuyDinh;

                        m_UnitOfWork.TrinhDoLyLuanRepository.Update(trinhdo);
                        m_UnitOfWork.Save();
                        scope.Complete();
                        success = true;
                    }
                }
            }
            return success;
        }
        public ActionResult Edit(TrinhDoLyLuanEntity TrinhDoLyLuan)
        {
            TrinhDoLyLuanServices service = new TrinhDoLyLuanServices();

            if (TrinhDoLyLuan == null)
            {
                return Json(RenderResult.RequestError(ViewData, "Lỗi đối số không hợp lệ"), JsonRequestBehavior.AllowGet);
            }

            try
            {
                if (service.Update(TrinhDoLyLuan))
                    return Json(RenderResult.RequestCompleted(ViewData, "Chỉnh sửa thành công"));

                return Json(RenderResult.RequestCompleted(ViewData, "Chỉnh sử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 Delete(TrinhDoLyLuanEntity TrinhDoLyLuan)
        {
            TrinhDoLyLuanServices service = new TrinhDoLyLuanServices();

            try
            {
                if (service.Delete(TrinhDoLyLuan))
                    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 List<TrinhDoLyLuanEntity> GetAll()
        {
            IEnumerable<TrinhDoLyLuans> model = this.m_UnitOfWork.TrinhDoLyLuanRepository.GetAll();
            List<TrinhDoLyLuanEntity> result = new List<TrinhDoLyLuanEntity>();

            foreach (var item in model)
            {
                TrinhDoLyLuanEntity trinhdo = new TrinhDoLyLuanEntity
                {
                    Id = item.Id,
                    MaQuyDinh = item.MaQuyDinh,
                    TenTrinhDo = item.TenTrinhDo

                };
                result.Add(trinhdo);
            }

            return result;
        }