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