private void btn_OdaDuzenle_Click(object sender, EventArgs e) { try { if (kisiId == 0) { throw new Exception("Kişi Seçmediniz !"); } if (string.IsNullOrEmpty(txt_OdaAdi.Text)) { throw new Exception("Oda Adı Boş Geçilemez !"); } OdaController.OdaGuncelle(this._odaId, txt_OdaAdi.Text, Convert.ToInt32(cmb_Departman.SelectedValue), kisiId); MessageBox.Show("Güncelleme Başarılı !", "Bilgi !", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.Message, "Bilgi !", MessageBoxButtons.OK, MessageBoxIcon.Information); } }