add forms, prepare webservices call

This commit is contained in:
Jonathan Jenne
2020-09-14 17:08:43 +02:00
parent c9bd8da4a6
commit 82ec7c9ecb
22 changed files with 932 additions and 153 deletions

View File

@@ -1,9 +1,17 @@
Public Class ProductVersion
Public Property Id As Integer
Public Property Guid As Integer
Public Property Code As String
Public Property GroupId As Integer
Public Property VersionId As Integer
Public Property Name As String
Public Property Part As Integer
Public ReadOnly Property VersionString As String
Get
Return VersionId.ToString.PadLeft(2, "0")
End Get
End Property
Public Overrides Function ToString() As String
Return $"{Id.ToString.PadLeft(2, "0")} - {Name}"
Return $"{VersionId.ToString.PadLeft(2, "0")} - {Name}"
End Function
End Class