Example #1
0
 void LoadAllUsers()
 {
     try
     {
         List <Kullanici> liste = managerUser.GetList <Kullanici>(x => x.Sube == UserInfo.Sube);
         dataGridView1.DataSource = liste;
     }
     catch (Exception exc)
     {
         LogWrite.Write(exc);
         MessageBox.Show(exc.Message);
     }
 }