if (familiares > 0) {
for (int i=0; i<familiares; i++) {
- AgregarFamiliar (i+1, familiares);
+ AgregarFamiliar (i+1, familiares, tipoDoc, nroDoc);
}
}
+ c.Visitado (tipoDoc, nroDoc);
+
c.Dispose ();
store.Remove (ref iter);
}
- private void AgregarFamiliar (int n, int total)
+ private void AgregarFamiliar (int n, int total, ETipoDocumento tipo, int nro)
{
- VAgregarFamiliar w = new VAgregarFamiliar (n, total);
+ VAgregarFamiliar w = new VAgregarFamiliar (n, total, tipo, nro);
w.Run ();
}