Beispiel #1
0
 private void dgwKullanici_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     inForm_kullanici              = _kullaniciService.GetKullaniciByID(Convert.ToInt32(dgwKullanici.CurrentRow.Cells[0].Value.ToString()));
     tbxKullaniciAktivasyon.Text   = inForm_kullanici.KullaniciAdi;
     tbxKullaniciDeaktivasyon.Text = inForm_kullanici.KullaniciAdi;
     tbxGuncelAd.Text              = inForm_kullanici.KullaniciAdi;
     tbxGuncelParola.Text          = inForm_kullanici.Password;
     cbxGuncelAdmin.Checked        = false;
     if (inForm_kullanici.Role == Roles.admin)
     {
         cbxGuncelAdmin.Checked = true;
     }
     _logService.Add(new Log
     {
         KullaniciID = _kullanici.ID,
         Aciklama    = _kullanici.KullaniciAdi + " kullanıcısı, " + inForm_kullanici.KullaniciAdi + " kullanıcısını seçti"
     });
 }