Beispiel #1
0
        public ActionResult Activate(Guid code)
        {
            Kullanici currentUser = _kullaniciService.GetUserByCode(code);

            if (currentUser != null)
            {
                currentUser.IsActive = true;
                _kullaniciService.Update(currentUser);
            }

            return(View());
        }