Example #1
0
        public void YorumEkle(YorumEntity entity)
        {
            SqlCommand cmd = dbHelper.GetSqlCommand();

            cmd.CommandText = "sp_YorumEkle @p1,@p2,@p3,@p4";
            cmd.Parameters.Add("@p1", entity.AdSoyad);
            cmd.Parameters.Add("@p2", entity.Telefon);
            cmd.Parameters.Add("@p3", entity.Email);
            cmd.Parameters.Add("@p4", entity.yorum);
            cmd.ExecuteNonQuery();
        }
Example #2
0
 public void YorumEkle(YorumEntity e)
 {
     try
     {
         dal.YorumEkle(e);
     }
     catch (Exception x)
     {
         Console.WriteLine(x);
     }
 }
Example #3
0
    protected void btnGonder_Click(object sender, EventArgs e)
    {
        if (txtAd.Text != "" && txtEmail.Text != "" && txtTelefon.Text != "" && txtYorum.Text != "")
        {
            YorumBLL    yorum  = new YorumBLL();
            YorumEntity entity = new YorumEntity();
            entity.AdSoyad = txtAd.Text;
            entity.Email   = txtEmail.Text;
            entity.Telefon = txtTelefon.Text;
            entity.yorum   = txtYorum.Text;

            yorum.YorumEkle(entity);
            txtAd.Text      = "";
            txtEmail.Text   = "";
            txtTelefon.Text = "";
            txtYorum.Text   = "";
            Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Başarılı", "<script>alert('Yorumunuz başarı ile eklendi');</script>");
        }
        else
        {
            Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Uyarı", "<script>alert('Eksik ya da hatalı bilgi girdiniz!');</script>");
        }
    }