/// <summary>
 /// Delete a task by id
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='actionPlanTaskId'>
 /// The unique identifer of the task.
 /// </param>
 public static void Delete(this IActionPlanTasks operations, System.Guid actionPlanTaskId)
 {
     operations.DeleteAsync(actionPlanTaskId).GetAwaiter().GetResult();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Delete a task by id
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='actionPlanTaskId'>
 /// </param>
 public static object Delete(this IActionPlanTasks operations, string actionPlanTaskId)
 {
     return(operations.DeleteAsync(actionPlanTaskId).GetAwaiter().GetResult());
 }