First create solution

This commit is contained in:
2017-03-08 11:21:27 +01:00
commit a2fb86bacf
5508 changed files with 1082238 additions and 0 deletions
@@ -0,0 +1,61 @@
Imports System
Imports System.ComponentModel
Imports DevExpress.Xpo
Imports DevExpress.Data.Filtering
Imports DevExpress.ExpressApp
Imports DevExpress.Persistent.Base
Imports DevExpress.Persistent.BaseImpl
Imports DevExpress.Persistent.Validation
<DefaultClassOptions()> _
<NavigationItem("GeneralStock")> _
<DefaultProperty("CustomsTariffNumber")> _
Public Class CustomsTariffs
Inherits BaseObject
Private _CustomsTariffNumber As String
Private _Description As String
Private _NAVCode As String
Private _NAVDescription As String
Public Sub New(ByVal session As Session)
MyBase.New(session)
End Sub
Property CustomsTariffNumber As String
Get
Return _CustomsTariffNumber
End Get
Set(ByVal value As String)
SetPropertyValue("CustomsTariffNumber", _CustomsTariffNumber, value)
End Set
End Property
<Size(255)>
Property Description As String
Get
Return _Description
End Get
Set(ByVal value As String)
SetPropertyValue("Description", _Description, value)
End Set
End Property
Property NAVCode As String
Get
Return _NAVCode
End Get
Set(value As String)
SetPropertyValue("NAVCode", _NAVCode, value)
End Set
End Property
<Size(255)>
Property NAVDescription As String
Get
Return _NAVDescription
End Get
Set(value As String)
SetPropertyValue("NAVDescription", _NAVDescription, value)
End Set
End Property
End Class