]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Vistas/AgregarFamiliar.cs
* Ahi esta el muy puto ahora registra familiares y sus titulares, ahora con el botonito
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / AgregarFamiliar.cs
index c2d0b172900e1915b68313008819e81ebee3b7f2..2991f473285d9d868b20219b19f32b4b0f3d39b6 100644 (file)
@@ -33,6 +33,7 @@ public class VAgregarFamiliar
 
        int actual;
        int total;
+       bool error = false;
 
        ETipoDocumento tipoTitular;
        int nroTitular;
@@ -90,10 +91,15 @@ public class VAgregarFamiliar
                //_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)
@@ -113,12 +119,13 @@ public class VAgregarFamiliar
                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;
        }
 }