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