Reconfigure for GIT
This commit is contained in:
+54
@@ -0,0 +1,54 @@
|
||||
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()> _
|
||||
<NonPersistent()> _
|
||||
<NavigationItem(False)> _
|
||||
<CreatableItem(False)> _
|
||||
Public Class APCSheetPresentation_New_PopUp
|
||||
Inherits BaseObject
|
||||
|
||||
Private _Products As Products
|
||||
Private _PresentationYear As Long 'Év
|
||||
Private _Area As Double 'Tervezett megmûvelt terület
|
||||
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
End Sub
|
||||
|
||||
Property Products As Products
|
||||
Get
|
||||
Return _Products
|
||||
End Get
|
||||
Set(value As Products)
|
||||
SetPropertyValue("Products", _Products, value)
|
||||
End Set
|
||||
End Property
|
||||
Property PresentationYear As Long
|
||||
Get
|
||||
Return _PresentationYear
|
||||
End Get
|
||||
Set(value As Long)
|
||||
SetPropertyValue("PresentationYear", _PresentationYear, value)
|
||||
End Set
|
||||
End Property
|
||||
Property Area As Double
|
||||
Get
|
||||
Return _Area
|
||||
End Get
|
||||
Set(value As Double)
|
||||
SetPropertyValue("Area", _Area, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
Reference in New Issue
Block a user