public static bool DeleteTax(tTaxSetup taxSetup) { try { var result = AccountingDataProvider.DeleteTax(taxSetup); if (result == 1) { return(true); } return(false); } catch (Exception exception) { throw new Exception(exception.Message); } }