// this function attempts to add new coulmn to the board.
 public static InfoObject addColumn(string email, string columnName)
 {
     return(UserControler.addColumn(email, columnName));
 }
 // this function attempts to add new coulmn to the board.
 public static Boolean addColumn(string email, string columnName)
 {
     return(UserControler.addColumn(email, columnName).getIsSucceeded());
 }