예제 #1
0
파일: frmKhachHang.cs 프로젝트: ovitan/VB1
        private void btn_xoa_Click(object sender, EventArgs e)
        {
            if (txt_ma_khachhang.Text.Length > 0)
            {
                dal.Delete_kh(txt_ma_khachhang.Text.Trim());
                BindDataGridView();
                ResetControl();

                btn_xoa.Enabled = false;
                btn_sua.Enabled = false;
            }
        }
예제 #2
0
파일: BLL_KhachHang.cs 프로젝트: ovitan/VB1
 public bool Delete_kh(string ma_kh)
 {
     return(KH.Delete_kh(ma_kh));
 }