public RestorePasswordViewController()
 {
     _restorePasswordVm = ServiceLocator.Current.GetInstance <RestorePasswordVm>();
 }
Example #2
0
 public async Task <IActionResult> RestorePassword(RestorePasswordVm restorePasswordVm) =>
 Ok(await _userService.RestorePassword(restorePasswordVm.Email));