// this function attempts to logout from the system.
 public static InfoObject logout(string email)
 {
     return(UserControler.logout(email));
 }
 // this function attempts to logout from the system.
 public static Boolean logout(string email)
 {
     return(UserControler.logout(email).getIsSucceeded());
 }