private void btnPerGuncelle_Click(object sender, EventArgs e) { Personel _Personel = CMG.SeciliSube().PersonelListesi().ElementAt(indeksPersonel); if (txtPerAd.Text == "" || txtPerSoyad.Text == "" || txtPerTCKNO.Text == "" || txtPerMaas.Text == "") { lblPerOlumluSonuc.Visible = false; lblPerOlumsuzSonuc.Visible = true; } else { _Personel.BilgileriGuncelle(txtPerAd.Text, txtPerSoyad.Text, Convert.ToInt64(txtPerTCKNO.Text), Convert.ToDecimal(txtPerMaas.Text)); if (txtPerSifre.Text == "" || txtPerSifreOnay.Text == "") { if (txtPerSifre.Text == txtPerSifreOnay.Text) { _Personel.SifreDegistir(txtPerSifre.Text); lblPerOlumsuzSonuc.Visible = false; lblPerOlumluSonuc.Visible = true; } else { lblPerOlumsuzSonuc.Visible = false; lblOlumluSonuc.Visible = true; } lblPerOlumsuzSonuc.Visible = true; lblPerOlumluSonuc.Visible = false; } if (_Personel is Calisan) { rbCalisan.Checked = true; } else { rbMudur.Checked = true; } lblPerOlumsuzSonuc.Visible = false; lblPerOlumluSonuc.Visible = true; } }
private void btnSifreDegistir_Click(object sender, EventArgs e) { if (txtSifre.Text == "" || txtSifreTekrar.Text == "") { lblOlumluSonuc.Visible = false; lblOlumsuzSonuc.Visible = true; } else { if (txtSifre.Text == txtSifreTekrar.Text) { aktifPersonel.SifreDegistir(txtSifre.Text); lblOlumsuzSonuc.Visible = false; lblOlumluSonuc.Visible = true; } else { lblOlumluSonuc.Visible = false; lblOlumsuzSonuc.Visible = true; } } }