Initializes a new instance of the TaskManager class. The initial values of the data member properties are set to appropriate property paths for using TaskItem, AssignmentItem, and PredecessorItem objects.

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

Syntax

C#
public TaskManager(
	Entity parentEntity,
	ResourceManager assignableResourceManager,
	Schedule schedule,
	DataManagementMode dataManagementMode
)
Visual Basic (Declaration)
Public Sub New ( _
	parentEntity As Entity, _
	assignableResourceManager As ResourceManager, _
	schedule As Schedule, _
	dataManagementMode As DataManagementMode _
)

Parameters

parentEntity
Type: DlhSoft.Windows.Data..::.Entity
Parent entity that owns the TaskManager or null if the manager has no parent entity.
assignableResourceManager
Type: DlhSoft.Windows.Data..::.ResourceManager
The ResourceManager object to be used internally for managing assignable resources used by this TaskManager.
schedule
Type: DlhSoft.Windows.Data..::.Schedule
The schedule to be used as default schedule for the tasks.
dataManagementMode
Type: DlhSoft.Windows.Data..::.DataManagementMode
Data management mode to use.

See Also