private void ShowEditForm(CUSTOMER pv) { if (pv != null) { CustomerEdit pro = new CustomerEdit(pv, this); pro.Show(); } }
private void NewEditForm() { CustomerEdit pro = new CustomerEdit(null, this); pro.Show(); }