示例#1
0
 public ResetPasswordController(IResetPassword resetpassword)
 {
     iresetpassword = resetpassword;
 }
示例#2
0
 public virtual async Task <IResponseResult <IApiResponse <string> > > ResetPassword(IResetPassword record)
 {
     return(await HttpClient.SendJsonResponseResultAsync <string, IResetPassword>(HttpMethod.Put, $"/{ControllerName}/{ResetPasswordMethod}", record, new ResetPasswordValidator()));
 }