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