/// <summary> /// Create a new Tax object. /// </summary> /// <param name="taxId">Initial value of TaxId.</param> public static Tax CreateTax(long taxId) { Tax tax = new Tax(); tax.TaxId = taxId; return tax; }
/// <summary> /// Deprecated Method for adding a new object to the Taxes EntitySet. /// </summary> public void AddToTaxes(Tax tax) { base.AddObject("Taxes", tax); }