From 95173cdf1572c225ddb2d37abe835fa6aa0eb8ea Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 4 Feb 2021 16:57:12 +0100 Subject: [PATCH] EDMIBenchmark: clean up --- GUIs.Test.EDMIBenchmark/Form1.vb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/GUIs.Test.EDMIBenchmark/Form1.vb b/GUIs.Test.EDMIBenchmark/Form1.vb index 7ff56136..cd35bc0d 100644 --- a/GUIs.Test.EDMIBenchmark/Form1.vb +++ b/GUIs.Test.EDMIBenchmark/Form1.vb @@ -6,6 +6,7 @@ Imports DevExpress.XtraEditors.Controls Imports System.IO Imports DigitalData.Modules.EDMI.API.EDMIServiceReference Imports DigitalData.GUIs.Common +Imports DigitalData.Modules.ZooFlow.State Public Class Form1 Private _LogConfig As LogConfig @@ -159,12 +160,15 @@ Public Class Form1 } } Dim oEnv As New DigitalData.Modules.ZooFlow.Environment() With { - .Service = New DigitalData.Modules.ZooFlow.State.ServiceState() With { + .Service = New ServiceState() With { .IsActive = True, .Address = "172.24.12.39:9000" }, - .Settings = New DigitalData.Modules.ZooFlow.State.SettingsState With { + .Settings = New SettingsState With { .GdPictureKey = "21182889975216572111813147150675976632" + }, + .User = New UserState() With { + .UserId = 2 } } Dim oForm As New frmDocumentResultList(_LogConfig, oEnv, oParams)