public void CargarRecibosDePagos(Ccuenta_corriente obj)
        {
            DataTable tabla;

            foreach (Cpago_credito aux in obj.Creditos)
            {
                tabla = Cdatos_operaciones.DevolverRebibosDePagos(aux);
                if (tabla.Rows.Count > 0 && aux.Recibos() == null)
                {
                    aux.InstanciaRecibos();
                    foreach (DataRow DR in tabla.Rows)
                    {
                        aux.AgregarRecibo(obj.BuscarDebito(Convert.ToInt32(DR[0])));
                    }
                }
            }
        }