Пример #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            double islem = float.Parse(label2.Text) + float.Parse(textBox1.Text);

            if (float.Parse(textBox1.Text) < 0)
            {
                MessageBox.Show("Yanlış Tutar Girdiniz");
            }
            else
            {
                int result = BLL.Para_Cekim(TC, islem);
                if (result == -1)
                {
                    MessageBox.Show("Beklenmedik Hata Oluştu..");
                }
                else
                {
                    MessageBox.Show("Paranızı Yatırıldı....");
                    ANASAYFA ana = new ANASAYFA();
                    ana.TC = TC;
                    ana.Show();
                    this.Hide();
                }
            }
        }
Пример #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            double islem = float.Parse(label2.Text) - float.Parse(textBox1.Text);

            if (islem < 0)
            {
                MessageBox.Show("Hesabnızdaki limit kadar çekim yapabilirsiniz..");
            }
            else
            {
                int result = BLL.Para_Cekim(TC, islem);
                if (result == -1)
                {
                    MessageBox.Show("Beklenmedik Hata Oluştu..");
                }
                else
                {
                    MessageBox.Show("Paranızı Alabilirsiniz....");
                    ANASAYFA ana = new ANASAYFA();
                    ana.TC = TC;
                    ana.Show();
                    this.Hide();
                }
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            Musteri M;

            M = BLL.Musteri_KayitGetir(TC);

            double islem = float.Parse(M.Bakiye) - float.Parse(textBox1.Text);

            if (islem < 0)
            {
                MessageBox.Show("Hesabnızdaki limit kadar çekim yapabilirsiniz..");
            }
            else
            {
                int result = BLL.Para_Cekim(TC, islem);
                if (result == -1)
                {
                    MessageBox.Show("Beklenmedik Hata Oluştu..");
                }
                else
                {
                    MessageBox.Show("Faturanız Ödendi..");
                    ANASAYFA ana = new ANASAYFA();
                    ana.TC = TC;
                    ana.Show();
                    this.Hide();
                }
            }
        }
Пример #4
0
        private void button1_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(textBox1.Text))
            {
                MessageBox.Show("TUTAR GİRİN");
                return;
            }

            float kalan = ((bakiye) - float.Parse(textBox1.Text));

            if (kalan < 0)
            {
                MessageBox.Show("Limit Uygun Değil..");
            }
            else
            {
                if (maskedTextBox1.TextLength == 33)
                {
                    int sonuc = BLL.IBAN_ARA(maskedTextBox1.Text);
                    if (sonuc > 0)
                    {
                        int yatirmasonuc = BLL.IBAN_YATIR(maskedTextBox1.Text, float.Parse(textBox1.Text));
                        if (yatirmasonuc == -1)
                        {
                            MessageBox.Show("HATA");
                        }
                        else
                        {
                            MessageBox.Show("YATIRILDI...");
                            int      result = BLL.Para_Cekim(TC, kalan);
                            ANASAYFA ANA    = new ANASAYFA();
                            ANA.TC = TC;
                            ANA.Show();
                            this.Hide();
                        }
                    }
                    else
                    {
                        MessageBox.Show("IBAN TANIMSIZ..");
                    }
                }
                else
                {
                    MessageBox.Show("IBAN GEÇERSİZ");
                }
            }
        }