Example #1
0
 private void Musteri_Load(object sender, EventArgs e)
 {
     try
     {
         using (CustomersServices.ConvertSoapClient client = new CustomersServices.ConvertSoapClient())
         {
             List <Customers> customers = new List <Customers>();
             foreach (var item in client.GetCustomer().OrderBy(x => x.Musteri_ID).ToList())
             {
                 Customers castedCustomer = new Customers()
                 {
                     Musteri_ID           = item.Musteri_ID,
                     Musteri_Ad           = item.Musteri_Ad,
                     Musteri_Soyad        = item.Musteri_Soyad,
                     Musteri_KullaniciAdi = item.Musteri_KullaniciAdi,
                     Musteri_TC           = item.Musteri_TC
                 };
                 customers.Add(castedCustomer);
             }
             dataGridView1.DataSource = null;
             dataGridView1.DataSource = customers.ToList();
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
        private void btnEkle_Click(object sender, EventArgs e)
        {
            try
            {
                bool success;
                using (CustomersServices.ConvertSoapClient client = new CustomersServices.ConvertSoapClient())
                {
                    success = client.InsertCustomer(new CustomersServices.Customers()
                    {
                        Musteri_Ad           = adTxt.Text,
                        Musteri_Soyad        = txtSoyad.Text,
                        Musteri_KullaniciAdi = txtUname.Text,
                        Musteri_TC           = txtTC.Text,
                        Musteri_Sifre        = txtPass.Text
                    });
                }
                var msg = success ? "başarılı!" : "başarısız!";

                MessageBox.Show("İşlem " + msg);
                adTxt.Text    = "";
                txtSoyad.Text = "";
                txtUname.Text = "";
                txtTC.Text    = "";
                txtPass.Text  = "";
            }
            catch (Exception)
            {
                throw;
            }
        }
Example #3
0
        private void txtMusteriID_TextChanged(object sender, EventArgs e)
        {
            try
            {
                CustomersServices.ConvertSoapClient client = new CustomersServices.ConvertSoapClient();

                var item = client.CustomerFind(int.Parse(txtMusteriID.Text));

                lblMusteriAd.Text  = item.Musteri_Ad;
                lblMusteriSAd.Text = item.Musteri_Soyad;
                lblMusteriKAd.Text = item.Musteri_KullaniciAdi;
            }
            catch (Exception)
            {
                lblMusteriAd.Text  = "";
                lblMusteriKAd.Text = "";
                lblMusteriSAd.Text = "";
            }
        }
Example #4
0
        private void btnGiris_Click(object sender, EventArgs e)
        {
            bool success;

            using (CustomersServices.ConvertSoapClient Login = new CustomersServices.ConvertSoapClient())
            {
                success      = Login.LoginCheck(txtAd.Text, txtPass.Text);
                txtAd.Text   = "";
                txtPass.Text = "";
            }
            var message = success ? "Başarılı!" : "Başarısız!";

            MessageBox.Show("Giriş işlemi " + message);
            if (success)
            {
                this.Hide();
                mainForm mdiParent = new mainForm();
                mdiParent.Show();
            }
        }
Example #5
0
        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                bool success;
                using (CustomersServices.ConvertSoapClient delete = new CustomersServices.ConvertSoapClient())
                {
                    success = delete.DeleteCustomer(int.Parse(txtMusteriID.Text));
                }
                var msg = success ? "başarılı!" : "başarısız!";

                MessageBox.Show("Silme islemi " + msg);
                txtMusteriID.Text = "";
            }
            catch (Exception)
            {
                MessageBox.Show("Boş gecilemez!");
                throw;
            }
        }