Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TaxJurisdiction" /> class.
 /// </summary>
 /// <param name="State">State.</param>
 /// <param name="County">County.</param>
 /// <param name="Place">Place.</param>
 /// <param name="Spds">Spds.</param>
 public TaxJurisdiction(TaxState State = null, TaxCounty County = null, TaxPlace Place = null, List <SpecialPurposeDistrict> Spds = null)
 {
     this.State  = State;
     this.County = County;
     this.Place  = Place;
     this.Spds   = Spds;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="IPDTaxJurisdiction" /> class.
 /// </summary>
 /// <param name="State">State.</param>
 /// <param name="County">County.</param>
 /// <param name="Place">Place.</param>
 public IPDTaxJurisdiction(TaxState State = null, TaxCounty County = null, TaxPlace Place = null)
 {
     this.State  = State;
     this.County = County;
     this.Place  = Place;
 }