protected void Page_Load(object sender, EventArgs e)
 {
     lblDurum.Text = "Sınıf Ekle";
     if (!IsPostBack)
     {
         DropDownListBolum.DataSource     = bolumislem.Getir().Where(p => p.IsActive == true);
         DropDownListBolum.DataValueField = "Id";
         DropDownListBolum.DataTextField  = "Name";
         DropDownListBolum.DataBind();
         DropDownListBolum.Items.Insert(0, new ListItem("Bölüm Seçiniz..", "0"));
         DropDownListEgitmen.DataSource     = trislem.Getir().Where(p => p.IsActive == true);
         DropDownListEgitmen.DataValueField = "Id";
         DropDownListEgitmen.DataTextField  = "FullName";
         DropDownListEgitmen.DataBind();
         DropDownListEgitmen.Items.Insert(0, new ListItem("Eğitmen Seçiniz..", "0"));
     }
 }