Пример #1
0
 public static bool Delete(Int32 taxRuleId, Int32 groupId)
 {
     TaxRuleGroup taxRuleGroup = new TaxRuleGroup();
     if (taxRuleGroup.Load(taxRuleId, groupId)) return taxRuleGroup.Delete();
     return false;
 }
Пример #2
0
 public static bool Delete(TaxRuleGroup taxRuleGroup)
 {
     return taxRuleGroup.Delete();
 }