예제 #1
0
        private void NuevoContato()
        {
            frmContactoCRED contactoCRED = new frmContactoCRED(id);

            contactoCRED.ShowDialog();

            GetGRV();
        }
예제 #2
0
        private void EditarContacto()
        {
            int?Id = GetIdRow();

            if (Id != null)
            {
                frmContactoCRED frmContactoCRED = new frmContactoCRED(id, Id);
                frmContactoCRED.ShowDialog();
                GetGRV();
            }
        }