public TaxPeriod1(
     System.DateTime year,
     bool yearSpecified,
     TaxRecordPeriod1Code taxRecordPeriodType,
     bool taxRecordPeriodTypeSpecified,
     DatePeriodDetails fromToDate)
 {
     this.yrField = year;
     this.yrFieldSpecified = yearSpecified;
     this.tpField = taxRecordPeriodType;
     this.tpFieldSpecified = taxRecordPeriodTypeSpecified;
     this.frToDtField = fromToDate;
 }
Example #2
0
 public TaxPeriod1()
 {
     frToDtField = new DatePeriodDetails();
 }