31 lines
601 B
VB.net
31 lines
601 B
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
|
|
|
|
Imports DevExpress.ExpressApp.ConditionalAppearance
|
|
|
|
'-- Paraméterek, enumok
|
|
Public Enum eRightState
|
|
ePossessor = 0 'Tulajdonos
|
|
eUsufructuary = 1 'Haszonélvezeti jog
|
|
End Enum
|
|
Public Enum eMileStonePayment
|
|
eSigned = 0
|
|
eEnterIntoPossession = 1
|
|
eOther = 2
|
|
End Enum
|
|
Public Enum eOpportunityType
|
|
eRent = 0
|
|
eSold = 1
|
|
End Enum
|
|
|
|
|
|
|