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