PublicAPI.Docflow.Objects.BPMN.SendToAcquaintanceTask.SetFactWorkLog ELMA API Documentation
Set fact time report in minutes
 
 
Syntax

public void SetFactWorkLog(
	long taskId,
	long minutes,
	DateTime startDate,
	string comment
)
Remarks

How to find objects IDs
Examples

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

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