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