Пример #1
0
        public async Task<Models.Common.Result<string>> ForgetPasswordAsync(ForgotPasswordRequest forgotPasswordRequest)
        {
            var response = await _httpClient.SendAsync<Models.Common.Result<string>>(HttpMethod.Post, "api/Account/forgot-password",
                forgotPasswordRequest.AsJson(), CancellationToken.None);

            return response;
        }