Initializes a new instance of the PredecessorManager class using simple data management mode.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
public PredecessorManager(
	Task parentTask,
	IEnumerable<SimplePredecessorItem> simplePredecessorItems
)
Visual Basic (Declaration)
Public Sub New ( _
	parentTask As Task, _
	simplePredecessorItems As IEnumerable(Of SimplePredecessorItem) _
)

Parameters

parentTask
Type: DlhSoft.Windows.Data..::.Task
Parent task that owns the PredecessorManager or null if the manager has no parent task.
simplePredecessorItems
Type: System.Collections.Generic..::.IEnumerable<(Of <(SimplePredecessorItem>)>)
Item definitions representing predecessors to be initially added to the collection.

See Also