Reconfigure for GIT

This commit is contained in:
2017-03-26 20:00:03 +02:00
commit 00637826ab
8056 changed files with 535977 additions and 0 deletions
@@ -0,0 +1,51 @@
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 StorageOutRowsLocation
Inherits BaseObject
Private _StorageOutRows As StorageOutRows
Private _StorageComputedLocations As StorageComputedLocations
Private _QTT As Double
Public Sub New(ByVal session As Session)
MyBase.New(session)
End Sub
Public Overrides Sub AfterConstruction()
MyBase.AfterConstruction()
End Sub
Property StorageOutRows As StorageOutRows
Get
Return _StorageOutRows
End Get
Set(value As StorageOutRows)
SetPropertyValue("StorageOutRows", _StorageOutRows, value)
End Set
End Property
Property StorageComputedLocations As StorageComputedLocations
Get
Return _StorageComputedLocations
End Get
Set(value As StorageComputedLocations)
SetPropertyValue("StorageComputedLocations", _StorageComputedLocations, 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
End Class