Exemplo n.º 1
0
Arquivo: frmXe.cs Projeto: ovitan/VB1
        private void btn_xoa_Click(object sender, System.EventArgs e)
        {
            if (txt_ma_so_xe.Text.Length > 0)
            {
                dal_xe.Delete_Xe(txt_ma_so_xe.Text.Trim());
                BindDataGridView();
                ResetControl();

                btn_xoa.Enabled = false;
                btn_sua.Enabled = false;
            }
        }
Exemplo n.º 2
0
Arquivo: BLL_Xe.cs Projeto: ovitan/VB1
 public bool Delete_Xe(string ma_xe)
 {
     return(dal_xe.Delete_Xe(ma_xe));
 }