Пример #1
0
 public Sirket SirketIdSil(int sirketId)
 {
     try
     {
         using (var repo = new SirketRepository())
         {
             if (repo.IdSil(sirketId))
             {
                 return(repo.IdSec(sirketId));
             }
         }
         return(null);
     }
     catch (Exception ex)
     {
         throw new Exception("SirketBusiness:SirketRepository:Silme Hatası", ex);
     }
 }