public ActionResult ProfilDuzenle(KanBanKullanici kullanici) { ModelState.Remove("duzenleyen"); if (ModelState.IsValid) { BusinessLayerResult <KanBanKullanici> res = km.UpdateProfil(kullanici); if (res.Hata.Count > 0) { ErrorViewModel error = new ErrorViewModel(); error.Items = res.Hata; error.Title = "Profil Güncellenemedi"; error.RedirectingUrl = "/Profile/ProfilDuzenle"; return(View("Error", error)); } //profil güncellendiği için session güncellendi CurrentSession.Set <KanBanKullanici>("login", res.Result); return(RedirectToAction("Profil")); } return(View(kullanici)); }