public VatTax Copy() { var other = new VatTax(); base.CopyTo(other); other.TaxCode = TaxCode; return(other); }
public static bool Equals(VatTax first, VatTax second) { return(PercentCurrencyAmount.Equals(first, second) && first.TaxCode == second.TaxCode); }