Ejemplo n.º 1
0
 public bool ExistingResetToken(string resetToken)
 {
     using (var _db = CreateDbContext())
     {
         return(_resetService.ExistingReset(_db, resetToken));
     }
 }
Ejemplo n.º 2
0
 //Checks the table of password resets to see if the reset token is found
 public bool ExistingResetToken(string resetToken)
 {
     return(_resetService.ExistingReset(resetToken));
 }