add forms, prepare webservices call
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
Public Class ProductGroup
|
||||
Public Property Id As Integer
|
||||
Public Property Vendor As String
|
||||
Public Property Guid As Integer
|
||||
Public Property GroupId As Integer
|
||||
Public Property Code As String
|
||||
Public Property Name As String
|
||||
|
||||
Public ReadOnly Property GroupString As String
|
||||
Get
|
||||
Return GroupId.ToString.PadLeft(2, "0")
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public Overrides Function ToString() As String
|
||||
Return $"{Id.ToString.PadLeft(2, "0")} - {Name}"
|
||||
Return $"{GroupId.ToString.PadLeft(2, "0")} - {Name}"
|
||||
End Function
|
||||
|
||||
|
||||
End Class
|
||||
|
||||
Reference in New Issue
Block a user