Example #1
0
 private void BtnCrear_Click(object sender, EventArgs e)
 {
     if (estaVacio() == false)
     {
         controlador.insert();
     }
 }
Example #2
0
 private void BtnGuardar_Click(object sender, EventArgs e)
 {
     if (estaVacio() == false)
     {
         controlador.insert();
         controlador.presentarTabla();
     }
 }