Exemplo n.º 1
0
 private void creerToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (FormAddEditAndContact frm = new FormAddEditAndContact(null))
     {
         if (frm.ShowDialog() == DialogResult.OK)
         {
             contactBindingSource.DataSource = ContactServices.GetAll();
         }
     }
 }
Exemplo n.º 2
0
 private void modifierToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (contactBindingSource.Current == null)
     {
         return;
     }
     using (FormAddEditAndContact frm = new FormAddEditAndContact(contactBindingSource.Current as Contact))
     {
         if (frm.ShowDialog() == DialogResult.OK)
         {
             contactBindingSource.DataSource = ContactServices.GetAll();
         }
     }
 }