Exemplo n.º 1
0
 private void btn_Finish_Click(object sender, EventArgs e)
 {
     if (Validate())
     {
         _customer.Credit = num_Credit.Value;
         _customer.Debit  = num_Debit.Value;
         _bDCustomerWrapper.Update(_customer);
         frmCustomerSearchObj.InitionGrid();
         this.Close();
     }
 }