PublicAPI.Projects.Objects.ProjectPlanApprovalTask.SetFactWorkLogDays ELMA API Documentation
Set fact time report, in days
 
 
Syntax

public void SetFactWorkLogDays(
	long taskId,
	long days,
	DateTime startDate,
	string comment
)
Remarks

How to find objects IDs
Examples

//time spent, in days 
long days = 4;
//start date 
var startDate = DateTime.Now;
//comment 
var comment = "comment";

//set time report
PublicAPI.Portal.TaskBase.Task.SetFactWorkLog(taskId, days, startDate, comment);
See Also