Exemple #1
0
 public static Task <IHttpResponse> DeleteByIdAsync(
     [WorkflowParameter(Value = "{{TeamsNotification_}}")]
     [UpdateId(Name = IdPropertyName)] IRef <TeamsNotification> teamsNotificationId,
     NoContentResponse onDeleted,
     NotFoundResponse onNotFound)
 {
     return(teamsNotificationId.HttpDeleteAsync(
                onDeleted,
                onNotFound));
 }