public bool SirketIdSil(int id)
 {
     try
     {
         using (var business = new SirketBusiness())
         {
             business.SirketIdSil(id);
         }
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }