int actual;
int total;
+ bool error = false;
ETipoDocumento tipoTitular;
int nroTitular;
//_provincia
_telefono = telefono.Text;
- c.CargarFamiliar (
+ if (c.CargarFamiliar (
tipoTitular, nroTitular, _tipoDoc, _nroDoc, _nombre, _apellido, _email,
_fechaNac, _calle, _numero, _piso, _dpto, _telefono,
- _sexo);
+ _sexo) == false )
+ {
+ Console.WriteLine ("ERROR AL CARGAR FAMILIAR");
+ error = true;
+ }
+
}
public void OnSeleccionarFechaClicked (object o, EventArgs args)
d.Destroy ();
}
- public void Run ()
+ public bool Run ()
{
Dialog w = (Dialog)xml.GetWidget ("agregar_familiar");
w.Title = String.Format ("Agregar Familiar {0} de {1}", actual, total);
w.Run ();
w.Destroy ();
+ return error;
}
}