// this functin attempts to forward task to the next coulmn in the board.
 public static InfoObject moveTask(string email, int taskID, int status)
 {
     return(UserControler.moveTask(email, taskID, status));
 }
 // this functin attempts to forward task to the next coulmn in the board.
 public static Boolean moveTask(string email, int taskID, int status)
 {
     return(UserControler.moveTask(email, taskID, status).getIsSucceeded());
 }