Beispiel #1
0
        public IServerResponse ResetPassword(ResetPasswordInfo resetPasswordInfo)
        {
            Assert.IsNotNull(resetPasswordInfo);
            Assert.IsStringNotNullOrEmpty(resetPasswordInfo.EmailOrMobile);
            Assert.IsStringNotNullOrEmpty(resetPasswordInfo.NewPassword);

            IServerResponse response = serverProvider.ResetPassword(resetPasswordInfo);

            return(response);
        }
Beispiel #2
0
 public IServerResponse ResetPassword(ResetPasswordInfo resetPasswordInfo)
 {
     return(serverProvider.ResetPassword(resetPasswordInfo));
 }