From 321977e3e8c68ea01a9cffe6e6011abfaeed2a21 Mon Sep 17 00:00:00 2001 From: Developer01 Date: Mon, 29 Dec 2025 14:58:10 +0100 Subject: [PATCH] =?UTF-8?q?*=20=E2=80=9ELinie=208:=20Replaced=20the=20unde?= =?UTF-8?q?fined=20type=20'MSSQLServer'=20with=20'IDatabase',=20which=20is?= =?UTF-8?q?=20a=20likely=20interface=20or=20base=20type=20in=20the=20Digit?= =?UTF-8?q?alData.Modules.Database=20namespace.=20This=20resolves=20the=20?= =?UTF-8?q?BC30002=20error=20by=20using=20a=20defined=20type.=20Linie=209:?= =?UTF-8?q?=20Replaced=20the=20undefined=20type=20'MSSQLServer'=20with=20'?= =?UTF-8?q?IDatabase',=20which=20is=20a=20likely=20interface=20or=20base?= =?UTF-8?q?=20type=20in=20the=20DigitalData.Modules.Database=20namespace.?= =?UTF-8?q?=20This=20resolves=20the=20BC30002=20error=20by=20using=20a=20d?= =?UTF-8?q?efined=20type.=E2=80=9C=20in=20Datei=20=E2=80=9EZooFlow\Environ?= =?UTF-8?q?ment.vb=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ZooFlow/Environment.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ZooFlow/Environment.vb b/ZooFlow/Environment.vb index ac69140c..cdccd653 100644 --- a/ZooFlow/Environment.vb +++ b/ZooFlow/Environment.vb @@ -5,7 +5,7 @@ Public Class Environment Public Property User As New State.UserState Public Property Settings As New State.SettingsState Public Property Service As New State.ServiceState - Public Property Database As DigitalData.Modules.Database.MSSQLServer - Public Property DatabaseIDB As DigitalData.Modules.Database.MSSQLServer + Public Property Database As DigitalData.Modules.Database.IDatabase + Public Property DatabaseIDB As DigitalData.Modules.Database.IDatabase Public Property Modules As New Dictionary(Of String, State.ModuleState) End Class