// this function attempts to edit the due date of a task.
 public static InfoObject editTaskDueDate(string email, int taskID, int status, string newDueDate)
 {
     return(UserControler.editTaskDueDate(email, taskID, status, newDueDate));
 }
 // this function attempts to edit the due date of a task.
 public static Boolean editTaskDueDate(string email, int taskID, int status, string newDueDate)
 {
     return(UserControler.editTaskDueDate(email, taskID, status, newDueDate).getIsSucceeded());
 }