public TaxRecord1(
     string type,
     string category,
     string categoryDetails,
     string debtorStatus,
     string certificateIdentification,
     string formsCode,
     TaxPeriod1 period,
     TaxAmount1 taxAmount,
     string additionalInformation)
 {
     this.tpField = type;
     this.ctgyField = category;
     this.ctgyDtlsField = categoryDetails;
     this.dbtrStsField = debtorStatus;
     this.certIdField = certificateIdentification;
     this.frmsCdField = formsCode;
     this.prdField = period;
     this.taxAmtField = taxAmount;
     this.addtlInfField = additionalInformation;
 }
 public TaxRecordDetails1(TaxPeriod1 period, ActiveOrHistoricCurrencyAndAmount amount)
 {
     this.prdField = period;
     this.amtField = amount;
 }