WIP: Database with sql connection object

This commit is contained in:
Jonathan Jenne
2022-11-02 09:01:42 +01:00
parent 4b098622d2
commit 95a0e578da
5 changed files with 58 additions and 38 deletions

View File

@@ -3,8 +3,8 @@
Public Class Environment
Public Property User As New State.UserState
Public Property Settings As New State.SettingsState
Public Property Service As State.ServiceState
Public Property Service As New State.ServiceState
Public Property Database As MSSQLServer
Public Property DatabaseIDB As MSSQLServer
Public Property Modules As Dictionary(Of String, State.ModuleState)
Public Property Modules As New Dictionary(Of String, State.ModuleState)
End Class