Exemplo n.º 1
0
 public ActionResult VerifyAccount(Guid Id)
 {
     ViewBag.Activated = _userrepo.ActivateAccount(Id);
     return(View());
 }
Exemplo n.º 2
0
 public int ActivateAccount(long id, string token)
 {
     return(userRepository.ActivateAccount(id, token));
 }