forked from DevExpress-Examples/out-of-maintenance-XPO_tutorial-1-your-first-data-aware-application-with-xpo-e4555
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Customer.Designer.vb
37 lines (34 loc) · 943 Bytes
/
Customer.Designer.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Imports System
Imports DevExpress.Xpo
Imports DevExpress.Data.Filtering
Namespace XpoTutorial1.DataModel
Partial Public Class Customer
Inherits XPObject
Private fName As String
Public Property Name() As String
Get
Return fName
End Get
Set(ByVal value As String)
SetPropertyValue(Of String)("Name", fName, value)
End Set
End Property
Private fAge As UShort
Public Property Age() As UShort
Get
Return fAge
End Get
Set(ByVal value As UShort)
SetPropertyValue(Of UShort)("Age", fAge, value)
End Set
End Property
End Class
End Namespace