105 lines
2.9 KiB
VB.net
105 lines
2.9 KiB
VB.net
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 RecipeFromOther
|
|
Inherits BaseObject
|
|
Private _Recipe As Recipe 'Recept
|
|
Private _RowGroup1 As String 'Szöveges csoportosítás (nem kötelezõ)
|
|
Private _RowGroup2 As String 'Szöveges másodlagos csoportosítás (nem kötelezõ)
|
|
Private _ShortName As String
|
|
Private _Description As String
|
|
Private _QTT As Double 'Mennyiség
|
|
Private _Units As Units
|
|
Private _ListPriceHUF As Double
|
|
Private _ListPriceDEV As Double
|
|
Public Sub New(ByVal session As Session)
|
|
MyBase.New(session)
|
|
End Sub
|
|
Public Overrides Sub AfterConstruction()
|
|
MyBase.AfterConstruction()
|
|
End Sub
|
|
<Association("Recipe-RecipeFromOther", GetType(Recipe))> _
|
|
Property Recipe As Recipe
|
|
Get
|
|
Return _Recipe
|
|
End Get
|
|
Set(value As Recipe)
|
|
SetPropertyValue("Recipe", _Recipe, value)
|
|
End Set
|
|
End Property
|
|
Property RowGroup1 As String
|
|
Get
|
|
Return _RowGroup1
|
|
End Get
|
|
Set(value As String)
|
|
SetPropertyValue("RowGroup1", _RowGroup1, value)
|
|
End Set
|
|
End Property
|
|
Property RowGroup2 As String
|
|
Get
|
|
Return _RowGroup2
|
|
End Get
|
|
Set(value As String)
|
|
SetPropertyValue("RowGroup2", _RowGroup2, value)
|
|
End Set
|
|
End Property
|
|
Property ShortName As String
|
|
Get
|
|
Return _ShortName
|
|
End Get
|
|
Set(value As String)
|
|
SetPropertyValue("ShortName", _ShortName, value)
|
|
End Set
|
|
End Property
|
|
Property Description As String
|
|
Get
|
|
Return _Description
|
|
End Get
|
|
Set(value As String)
|
|
SetPropertyValue("Description", _Description, value)
|
|
End Set
|
|
End Property
|
|
Property QTT As Double
|
|
Get
|
|
Return _QTT
|
|
End Get
|
|
Set(value As Double)
|
|
SetPropertyValue("QTT", _QTT, value)
|
|
End Set
|
|
End Property
|
|
Property Units As Units
|
|
Get
|
|
Return _Units
|
|
End Get
|
|
Set(value As Units)
|
|
SetPropertyValue("Units", _Units, value)
|
|
End Set
|
|
End Property
|
|
Property ListPriceHUF As Double
|
|
Get
|
|
Return _ListPriceHUF
|
|
End Get
|
|
Set(value As Double)
|
|
SetPropertyValue("ListPriceHUF", _ListPriceHUF, value)
|
|
End Set
|
|
End Property
|
|
Property ListPriceDEV As Double
|
|
Get
|
|
Return _ListPriceDEV
|
|
End Get
|
|
Set(value As Double)
|
|
SetPropertyValue("ListPriceDEV", _ListPriceDEV, value)
|
|
End Set
|
|
End Property
|
|
End Class
|