当前位置: 首页>>代码示例>>C#>>正文


C# Service1Client.YapilanProtokollerTablosunuGuncelle方法代码示例

本文整理汇总了C#中Service1Client.YapilanProtokollerTablosunuGuncelle方法的典型用法代码示例。如果您正苦于以下问题:C# Service1Client.YapilanProtokollerTablosunuGuncelle方法的具体用法?C# Service1Client.YapilanProtokollerTablosunuGuncelle怎么用?C# Service1Client.YapilanProtokollerTablosunuGuncelle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Service1Client的用法示例。


在下文中一共展示了Service1Client.YapilanProtokollerTablosunuGuncelle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: bnSave_Click

    protected void bnSave_Click(object sender, EventArgs e)
    {
        if (DateTime.Parse(ProtokolBasTarTextBox.Text) < DateTime.Today || DateTime.Parse(ProtokolBitTarTextBox.Text) < DateTime.Today)
        {

            RadNotification1.Text = "<font color='red'><b>Protokol başlangıç tarihi ya da bitiş tarihi bugünden küçük olamaz!</b></font>";
            RadNotification1.Show();
        }
        else//Eger bastar ve bittar bugünden sonraki bir tarihse
        {
            try
            {
                //Id var güncelleme
                // DateTime.Parse("2011-09-01"), DateTime.Parse("2011-09-01")
                int Id = int.Parse(Request["Id"].ToString());
                using (Service1Client client = new Service1Client())
                {
                    DateTime BasTar = DateTime.Parse(ProtokolBasTarTextBox.Text);
                    DateTime BitTar = DateTime.Parse(ProtokolBitTarTextBox.Text);
                    if (client.YapilanProtokollerTablosunuGuncelle(Id, int.Parse(Session["ProtokolUpdateSeciliFirmaId"].ToString()), BasTar, BitTar, client.UserNamedenUserIdDon(Context.User.Identity.Name), int.Parse(ddlIndirimOranlari.SelectedValue), int.Parse(ddlIndirimAdlari.SelectedValue), txtIndirimAciklama.Text.Trim()))
                    {
                        //güncelleme basarili
                        RadNotification1.Text = "Protokol güncelleme işlemi <font color='green'>başarılı!</font>";
                        RadNotification1.Show();
                    }
                    else
                    {
                        //güncelleme basarisiz
                        RadNotification1.Text = "Protokol güncelleme işlemi <font color='red'>başarısız!</font>";
                        RadNotification1.Show();
                    }
                }
            }
            catch
            {
                ////Id yok ekleme
                using (Service1Client client = new Service1Client())
                {
                    if (client.AyniFirmaninAyniTarihAraligiIleCakisanBasakProtokoluVarmi(int.Parse(RadComboBoxFirma.SelectedValue), DateTime.Parse(ProtokolBasTarTextBox.Text), DateTime.Parse(ProtokolBitTarTextBox.Text)).First().Sonuc.Value > 0)
                    {
                        RadNotification1.Text = "<font color='red'>Firmaya ait aynı aralıkla çakışan başka bir protokol var! Firmanın protokollerini kontrol ediniz ve yeni protokolünüz için eski biri ile çakışmayan uygun bir tarih aralığı belirleyiniz.</font>";
                        RadNotification1.Show();
                    }
                    else
                    {
                        if (client.YapilanProtokollerTablosunaEkle(int.Parse(RadComboBoxFirma.SelectedValue), DateTime.Parse(ProtokolBasTarTextBox.Text), DateTime.Parse(ProtokolBitTarTextBox.Text), client.UserNamedenUserIdDon(Context.User.Identity.Name), int.Parse(ddlIndirimOranlari.SelectedValue), int.Parse(ddlIndirimAdlari.SelectedValue), txtIndirimAciklama.Text.Trim()))
                        {
                            //güncelleme basarili
                            RadNotification1.Text = "Protokol ekleme işlemi <font color='green'>başarılı!</font>";
                            RadNotification1.Show();
                        }
                        else
                        {
                            //güncelleme basarisiz
                            RadNotification1.Text = "Protokol ekleme işlemi <font color='red'>başarısız!</font>";
                            RadNotification1.Show();
                        }
                    }
                }
            }
        }
    }
开发者ID:inancakcan,项目名称:kalibrasyon,代码行数:62,代码来源:ProtokolUpdate.aspx.cs

示例2: btnDelete_Click

    protected void btnDelete_Click(object sender, EventArgs e)
    {
        try
            {
                //Bu islem Protokol bastar ve bittar tarihini aynı yapacak protokol gecersiz kalacak
                //Id var güncelleme
                // DateTime.Parse("2011-09-01"), DateTime.Parse("2011-09-01")
                int Id = int.Parse(Request["Id"].ToString());
                using (Service1Client client = new Service1Client())
                {
                    DateTime BasTar = DateTime.Parse(ProtokolBasTarTextBox.Text);
                    DateTime BitTar = DateTime.Parse(ProtokolBasTarTextBox.Text);
                    if (client.YapilanProtokollerTablosunuGuncelle(Id, int.Parse(Session["ProtokolUpdateSeciliFirmaId"].ToString()), BasTar, BitTar, client.UserNamedenUserIdDon(Context.User.Identity.Name), int.Parse(ddlIndirimOranlari.SelectedValue), int.Parse(ddlIndirimAdlari.SelectedValue), txtIndirimAciklama.Text.Trim()))
                    {
                        //güncelleme basarili
                        RadNotification1.Text = "Protokol güncelleme işlemi <font color='green'>başarılı. Protokol geçersiz kılındı!</font>";
                        RadNotification1.Show();
                    }
                    else
                    {
                        //güncelleme basarisiz
                        RadNotification1.Text = "Protokol güncelleme işlemi <font color='red'>başarısız!</font>";
                        RadNotification1.Show();
                    }
                }
            }
            catch(Exception ex)
            {
                RadNotification1.Text = "Protokol güncelleme işlemi <font color='red'>başarısız!Hata:"+ex.Message+"</font>";
                RadNotification1.Show();

            }
    }
开发者ID:inancakcan,项目名称:kalibrasyon,代码行数:33,代码来源:ProtokolUpdate.aspx.cs


注:本文中的Service1Client.YapilanProtokollerTablosunuGuncelle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。