public static bool Delete(Int32 taxRuleId, Int32 shipZoneId)
        {
            TaxRuleShipZone taxRuleShipZone = new TaxRuleShipZone();

            if (taxRuleShipZone.Load(taxRuleId, shipZoneId))
            {
                return(taxRuleShipZone.Delete());
            }
            return(false);
        }
 public static bool Delete(TaxRuleShipZone taxRuleShipZone)
 {
     return(taxRuleShipZone.Delete());
 }