public ActionResult OzellikUrunSil(int UrunId, int tipId, int degerId)
        {
            OzellikUrun uo = Context.Baglanti.OzellikUrun.FirstOrDefault(x =>
                                                                         x.UrunId == UrunId && x.OzellikTipId == tipId && x.OzellikDegerId == degerId);

            Context.Baglanti.OzellikUrun.Remove(uo);
            Context.Baglanti.SaveChanges();
            return(RedirectToAction("OzellikUrunleri"));
        }
 public ActionResult UrunOzellikEkle(OzellikUrun uo)
 {
     Context.Baglanti.OzellikUrun.Add(uo);
     Context.Baglanti.SaveChanges();
     return(RedirectToAction("UrunOzellikleri"));
 }