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