public IServerResponse ResetPassword(ResetPasswordInfo resetPasswordInfo) { Assert.IsNotNull(resetPasswordInfo); Assert.IsStringNotNullOrEmpty(resetPasswordInfo.EmailOrMobile); Assert.IsStringNotNullOrEmpty(resetPasswordInfo.NewPassword); IServerResponse response = serverProvider.ResetPassword(resetPasswordInfo); return(response); }
public IServerResponse ResetPassword(ResetPasswordInfo resetPasswordInfo) { return(serverProvider.ResetPassword(resetPasswordInfo)); }