コード例 #1
0
        public ActionResult SayfaGetir(TblSosyalMedya p)
        {
            var hesap = repo.Find(x => x.ID == p.ID);

            hesap.Ad   = p.Ad;
            hesap.Link = p.Link;
            hesap.ikon = p.ikon;
            repo.TUpdate(hesap);
            return(RedirectToAction("Index"));
        }
コード例 #2
0
 public ActionResult Ekle(TblSosyalMedya p)
 {
     repo.TAdd(p);
     return(RedirectToAction("Index"));
 }