public async Task <IHttpActionResult> ChangePassword(ChangePasswordModel changePasswordModel)
 {
     return(Ok(await _userEndpoint.ChangePassword(User.Identity.GetUserId(), changePasswordModel)));
 }