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,44 @@
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(False), CreatableItem(False)>
Public Class ProductsSentence
Inherits BaseObject
Private _Products As Products
Private _Sentence As Sentence
Public Sub New(ByVal session As Session)
MyBase.New(session)
End Sub
<Association>
Property Products As Products
Get
Return _Products
End Get
Set(ByVal value As Products)
SetPropertyValue("Products", _Products, value)
End Set
End Property
Property Sentence As Sentence
Get
Return _Sentence
End Get
Set(ByVal value As Sentence)
SetPropertyValue("Sentence", _Sentence, value)
End Set
End Property
End Class