コード例 #1
0
        private void hienthi()
        {
            khachhangBLL pbll = new khachhangBLL();

            dataGridView1.DataSource = pbll.hienthikhachhang();
            pbll.ToString();
        }
コード例 #2
0
        private void btnxoa_Click(object sender, EventArgs e)
        {
            khachhangBLL khBLL = new khachhangBLL();
            DialogResult luu = MessageBox.Show("Bạn chắc chắn xóa??", "Thông báo thêm mới", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
            if (luu == DialogResult.Yes)
            {

                khBLL.xoa_khachhang(int.Parse(txtmakhachhang.Text));
                hienthi();
            }
        }
コード例 #3
0
 private void btnluu_Click(object sender, EventArgs e)
 {
     khachhangBLL khBLL = new khachhangBLL();
     if (temp == 2)
     {
         khBLL.sua_khachhang(txttenkh.Text, dtngaysinh.Value, travegioitinh(), txtcmt.Text, txtdiachi.Text, txtsdt.Text, cbquoctich.Text, int.Parse(txtmakhachhang.Text));
         hienthi();
         MessageBox.Show("Bạn đã lưu thành công", "Thông báo cập nhật", MessageBoxButtons.OK, MessageBoxIcon.Question);
     }
     else
     {
         khBLL.them_khachhang(txttenkh.Text, dtngaysinh.Value, travegioitinh(), txtcmt.Text, txtdiachi.Text, txtsdt.Text, cbquoctich.Text);
         hienthi();
     }
 }