private void cargarDatos()
        {
            LectorArchivos archivo;

            archivo = new LectorArchivos(dir + "maquinistas.txt");
            HashMaquinista = archivo.LeerArchivo(false);
        }
        private void Cargar_datos()
        {
            LectorArchivos archivo;

            archivo = new LectorArchivos(dir + "clientes.txt");
            HashCliente = archivo.LeerArchivo(false);

            archivo = new LectorArchivos(dir + "tipospapel.txt");
            HashTipoPapel = archivo.LeerArchivo(true);
        }