public Kullanici KullaniciIdSil(int KullaniciId) { try { using (var repo = new KullaniciRepository()) { if (repo.IdSil(KullaniciId)) { return(repo.IdSec(KullaniciId)); } } return(null); } catch (Exception ex) { throw new Exception("KullaniciBusiness:KullaniciRepository:Silme Hatası", ex); } }