// this function attempts to add new task to the board.
 public static InfoObject addTask(string email, string title, string description, string dueDate)
 {
     return(UserControler.addTask(email, title, description, dueDate));
 }
 // this function attempts to add new task to the board.
 public static Boolean addTask(string email, string title, string description, string dueDate)
 {
     return(UserControler.addTask(email, title, description, dueDate).getIsSucceeded());
 }