Beispiel #1
0
 public VcapClientResult ChangePassword(string newpassword)
 {
     checkLoginStatus();
     var hlpr = new UserHelper(credMgr);
     return hlpr.ChangePassword(info.User, newpassword);
 }
Beispiel #2
0
 public VcapClientResult Login(string email, string password)
 {
     var helper = new UserHelper(credMgr);
     return helper.Login(email, password);
 }
Beispiel #3
0
 public VcapClientResult AddUser(string email, string password)
 {
     var hlpr = new UserHelper(credMgr);
     return hlpr.AddUser(email, password);
 }
Beispiel #4
0
 public VcapClientResult DeleteUser(string email)
 {
     var hlpr = new UserHelper(credMgr);
     return hlpr.DeleteUser(email);
 }