Ejemplo n.º 1
0
        private void ParaYatirma_Load(object sender, EventArgs e)
        {
            Musteri M;

            M           = BLL.Musteri_KayitGetir(TC);
            label2.Text = M.Bakiye;
        }
        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();
                }
            }
        }
Ejemplo n.º 3
0
        private void ParaTransferleri_Load(object sender, EventArgs e)
        {
            Musteri M;

            M      = BLL.Musteri_KayitGetir(TC);
            bakiye = float.Parse(M.Bakiye);
        }
Ejemplo n.º 4
0
        private void ANASAYFA_Load(object sender, EventArgs e)
        {
            // BLL.Musteri_KayitGetir(TC);
            Musteri M;

            M           = BLL.Musteri_KayitGetir(TC);
            label2.Text = M.Bakiye;
        }
Ejemplo n.º 5
0
        private void button1_Click(object sender, EventArgs e)
        {
            Musteri M;

            M = BLL.Musteri_KayitGetir(TC);
            if (M.Sifre == textBox1.Text)
            {
                if (textBox2.Text == textBox3.Text)
                {
                    BLL.Sifre_Guncelle(TC, textBox2.Text);
                    MessageBox.Show("Şifreniz Guncellendi..");
                }
                else
                {
                    MessageBox.Show("Girdiğiniz Yeni Şifre İle Şifre Tekrar Aynı Deği ");
                }
            }
            else
            {
                MessageBox.Show("Eski Şifreniz Uyuşmuyor.");
            }
        }