Exemplo n.º 1
0
 public ActionResult FetchSecurityQuestions(string PasswordResetToken)
 {
     try
     {
         UserAccountManager _userAccountManager = new UserAccountManager(new MongoClient(MONGODB_CONNECTION_STRING));
         return(_userAccountManager.FetchSecurityQuestions(PasswordResetToken));
     }
     catch
     {
         return(new StatusCodeResult(StatusCodes.Status500InternalServerError));
     }
 }