EDMI: Add 3-tier database access in DatabaseWithFallback, add client config,
EDMI Service: Version 2.4.0.0 EDMI: API: Version 1.4.0.0
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
Imports System.Runtime.Serialization
|
||||
|
||||
Namespace Methods.Base.GetClientConfig
|
||||
|
||||
<Serializable>
|
||||
<DataContract>
|
||||
Public Class GetClientConfigResponse
|
||||
Inherits Messages.BaseResponse
|
||||
|
||||
<DataMember>
|
||||
Public Property ClientConfig As Config.ClientConfiguration
|
||||
|
||||
Public Sub New(pConfig As Config.ClientConfiguration)
|
||||
MyBase.New()
|
||||
ClientConfig = pConfig
|
||||
End Sub
|
||||
|
||||
Public Sub New(pException As Exception, Optional pDetails As String = "")
|
||||
MyBase.New(pException, pDetails)
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
End Namespace
|
||||
Reference in New Issue
Block a user