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,8 +1,11 @@
Public Class Vendor
Public Property Guid As Integer
Public Property Code As String
Public Property Name As String
Public Property WinlineName As String
Public Property WinlineNumber As String
Public Overrides Function ToString() As String
Return $"{Code} - {Name}"
Return $"{Code} - {Name} ({WinlineNumber.Trim} | {WinlineName.Trim})"
End Function
End Class