private void btnKaydet_Click(object sender, EventArgs e)
 {
     if (iss.PersonelID == 0)
     {
         MessageBox.Show("Personel seçin");
     }
     else if (txtBaslik.Text.Trim() == "")
     {
         MessageBox.Show("Başlık boş");
     }
     else if (txtIcerik.Text.Trim() == "")
     {
         MessageBox.Show("İçerik boş");
     }
     else
     {
         if (isUpdate)
         {
             DialogResult result = MessageBox.Show("Eminmisin?", "Dikkat", MessageBoxButtons.YesNo);
             if (result == DialogResult.Yes)
             {
                 IsDetayDTO dtoo = new IsDetayDTO();
                 if (Convert.ToInt32(txtUserNo.Text) != detay.UserNo)
                 {
                     dtoo.PersoneID = iss.PersonelID;
                 }
                 else
                 {
                     dtoo.PersoneID = detay.PersoneID;
                 }
                 dtoo.Baslik    = txtBaslik.Text;
                 dtoo.Icerik    = txtIcerik.Text;
                 dtoo.IsDurumID = Convert.ToInt32(cmbIsDurum.SelectedValue);
                 dtoo.IsID      = detay.IsID;
                 IsBLL.IsGuncelle(dtoo);
                 MessageBox.Show("Güncellendi");
                 this.Close();
             }
         }
         else
         {
             iss.Baslik         = txtBaslik.Text;
             iss.Icerik         = txtIcerik.Text;
             iss.IsDurumID      = 1;
             iss.IsBaslamaTarih = DateTime.Today;
             IsBLL.IsEkle(iss);
             MessageBox.Show("is Eklendi");
             txtBaslik.Clear();
             txtIcerik.Clear();
         }
     }
 }
 private void btnOnayla_Click(object sender, EventArgs e)
 {
     if (UserStatic.isAdmin && detay.IsDurumID == OnayStatic.Onaylandı)
     {
         MessageBox.Show("Bu iş Onaylanmış");
     }
     else if (UserStatic.isAdmin && detay.IsDurumID == OnayStatic.Personelde && detay.PersoneID != UserStatic.PersonelID)
     {
         MessageBox.Show("İşin Önce tamamlanması gerekir.");
     }
     else if (!UserStatic.isAdmin && detay.IsDurumID == OnayStatic.Tamamlandı)
     {
         MessageBox.Show("İş zaten tamamlanmış");
     }
     else
     {
         IsBLL.IsGuncelle(detay.IsID);
         MessageBox.Show("Onaylandı");
         combofull = false;
         doldur();
         Temizle();
     }
 }