protected void btnOK_Click(object sender, EventArgs e) { if (Page.IsValid) { try { MucdoEntity oMucdo = new MucdoEntity(); oMucdo.sTenmucdo = txtTenmucdo.Text; if (btnOK.CommandName == "Edit") { int MucdoID = Convert.ToInt32(btnOK.CommandArgument); oMucdo.PK_iMucdoID = MucdoID; MucdoBRL.Edit(oMucdo); btnOK.CausesValidation = true; lblThongbao.Text = "Cập nhật thành công"; } else { int MucdoID = MucdoBRL.Add(oMucdo); lblThongbao.Text = "Thêm thành công"; } //Nạp lại dữ liệu pnAdd.Visible = false; napgrvMucdo(); } catch (Exception ex) { Response.Write("<script language=\"javascript\">alert('" + ex.Message + "');location='Default.aspx?page=MucdoManager';</script>"); } } }
/// <summary> /// Kiểm tra và thêm mới Mucdo /// </summary> /// <param name="entity">Entity</param> /// <returns>Int32: ID của Mucdo Mới Thêm Vào</returns> public static Int32 Add(MucdoEntity entity) { checkLogic(entity); checkDuplicate(entity, false); checkFK(entity); return MucdoDAL.Add(entity); }
/// <summary> /// Kiểm tra và chỉnh sửa Mucdo /// </summary> /// <param name="entity">MucdoEntity</param> /// <returns>bool:kết quả thực hiện</returns> public static bool Edit(MucdoEntity entity) { checkExist(entity.PK_iMucdoID); checkLogic(entity); checkDuplicate(entity, true); checkFK(entity); return MucdoDAL.Edit(entity); }
/// <summary> /// Kiểm tra trùng lặp bản ghi /// </summary> /// <param name="entity">MucdoEntity: MucdoEntity</param> private static void checkDuplicate(MucdoEntity entity,bool checkPK) { /* Example List<MucdoEntity> list = MucdoDAL.GetAll(); if (list.Exists( delegate(MucdoEntity oldEntity) { bool result =oldEntity.FIELD.Equals(entity.FIELD, StringComparison.OrdinalIgnoreCase); if(checkPK) result=result && oldEntity.PK_iMucdoID != entity.PK_iMucdoID; return result; } )) { list.Clear(); throw new Exception(EX_FIELD_EXISTED); } */ }
/// <summary> /// Kiểm tra logic Entity /// </summary> /// <param name="entity">MucdoEntity: entity</param> private static void checkLogic(MucdoEntity entity) { if (String.IsNullOrEmpty(entity.sTenmucdo)) throw new Exception(EX_STENMUCDO_EMPTY); }
/// <summary> /// Kiểm tra tồn tại khóa ngoại /// </summary> /// <param name="entity">MucdoEntity:entity</param> private static void checkFK(MucdoEntity entity) { }