public bool pago(int lote, int idEmpleado, int credito, int amortizacion, int intereses, string nom, string ape1, string ape2)
 {
     CapaDatos.Metodos n = new CapaDatos.Metodos();
     if (n.realizarPago(lote, idEmpleado, credito, amortizacion, intereses, nom, ape1, ape2) == true)
     {
         return(true);
     }
     else
     {
         error = CapaDatos.Metodos.error;
         return(false);
     }
 }