public ActionResult Activate(Guid code) { Kullanici currentUser = _kullaniciService.GetUserByCode(code); if (currentUser != null) { currentUser.IsActive = true; _kullaniciService.Update(currentUser); } return(View()); }