示例#1
0
        private void pictureBox3_Click(object sender, EventArgs e)
        {
            KullaniciGiris kullaniciGiris = new KullaniciGiris();

            kullaniciGiris.Show();
            this.Close();
        }
示例#2
0
        private void btnSifreGuncelle_Click(object sender, EventArgs e)
        {
            int            id = _calisanService.emaileGoreGetir(txtEmail.Text);
            GirisIslemleri kullaniciGirisBilgisi = _girisIslemleriService.GirisBilgileriGetir(id);
            GirisIslemleri yeniGiris             = new GirisIslemleri();

            if (txtCevap.Text == kullaniciGirisBilgisi.GizliSoruCevap)
            {
                if (txtSifre.Text == txtSifreTekrar.Text)
                {
                    int a = _girisIslemleriService.KullaniciSifreDegistir(id, txtSifre.Text);
                    if (a > 0)
                    {
                        MessageBox.Show("Şifre Değiştirildi");
                        _girisIslemleriService.GirisGuncelle(kullaniciGirisBilgisi);
                        this.Close();
                        KullaniciGiris kullaniciGiris = new KullaniciGiris();
                        kullaniciGiris.Show();
                    }
                }
                else
                {
                    MessageBox.Show("Şifreler Aynı Değil!");
                    txtCevap.Text       = "Gizli Cevap";
                    txtSifre.Text       = "Şifre";
                    txtSifreTekrar.Text = "Şifre Tekrar";
                }
            }
            else
            {
                MessageBox.Show("Cevap Hatalı! Güncelleme Başarısız!");
                txtCevap.Text       = "Gizli Cevap";
                txtSifre.Text       = "Şifre";
                txtSifreTekrar.Text = "Şifre Tekrar";
            }
        }