PublicAPI.Projects.Objects.Budgets.ProjectBudgetApprovalTask.SetFactWorkLogHours ELMA API Documentation
Set fact time report in hours
 
 
Syntax

public void SetFactWorkLogHours(
	long taskId,
	long hours,
	DateTime startDate,
	string comment
)
Remarks

How to find objects IDs
Examples

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

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