Ejemplo n.º 1
0
        public void BolumEkle(int BolumNo, string BolumAdi)
        {
            bool flag;

            try
            {
                Bolum bolum = new Bolum(BolumNo, BolumAdi);
                BolumList.Add(BolumNo, bolum);
            }

            catch (Exception)
            {
                MessageBox.Show("Bolum Mevcut!");
            }
        }
Ejemplo n.º 2
0
        public void BolumEkle(int BolumNo, string BolumAdi)//fakulteye bolum ekleme
        {
            //bool flag;
            try
            {
                Bolum bolum = new Bolum(BolumNo, BolumAdi);
                BolumList.Add(BolumNo, bolum);
            }
            catch (FormatException)
            {
                MessageBox.Show("format hatası");
            }

            catch (Exception)
            {
                MessageBox.Show("Bolum Mevcut!");
            }
        }