public bool Ekle(int otelid, int musteriid, string yorum) { SqlCommand komut = new SqlCommand("Yorum_Ekle", Araclar.Baglanti); komut.CommandType = CommandType.StoredProcedure; komut.Parameters.AddWithValue("@Otelid", otelid); komut.Parameters.AddWithValue("@Musterid", musteriid); komut.Parameters.AddWithValue("@Yorum", yorum); return(Araclar.Calıstır(komut)); }
public bool guncelle(Personel personel, int id) { PropertyInfo[] Proplar = typeof(Personel).GetProperties(); SqlCommand komut = new SqlCommand(string.Format("{0}_Guncelle", typeof(Personel).Name), Araclar.Baglanti); komut.CommandType = CommandType.StoredProcedure; komut.Parameters.AddWithValue("@id", id); foreach (PropertyInfo p in Proplar) { string adi = p.Name; if (adi == "id") { continue; } Object deger = p.GetValue(personel); komut.Parameters.AddWithValue("@" + adi, deger); } return(Araclar.Calıstır(komut)); }