Example #1
0
        public bool Kaydet(Ogrenci ogrenci)
        {
            try {
                gunlukDeposu.Debug("Öğrenci kaydı yapılıyor...");

                var referansId = veriDeposu.Kaydet(ogrenci);

                gunlukDeposu.Debug("Öğrenci kaydı yapıldı. Referans Id : {0}", referansId);

                return(true);
            }
            catch (Exception istisna) {
                gunlukDeposu.Error("Öğrenci kaydı sırasında beklenmeyen bir hata oluştu : {0}", istisna);
            }

            return(false);
        }