Ejemplo n.º 1
0
        public void ToString(StringBuilder builder)
        {
            builder.Append(ReceiptRecordTypes.FileDetailRecord);
            builder.Append(FileRejectReasonCategory.PadRight(57));
            builder.Append(Addendums.Count.ToString("D5"));
            builder.Append(CashLetterId.PadRight(8));
            builder.Append(BundleId.PadRight(10));
            builder.AppendLine();

            Addendums.ForEach(a => a.ToString(builder));
        }
Ejemplo n.º 2
0
 public void ToString(StringBuilder builder)
 {
     builder.Append(ItemRecordTypes.ItemDetailRecord);
     builder.Append(ItemSequenceNumber.PadRight(15));
     builder.Append(BundleId.PadRight(10));
     builder.Append(Amount.ToString("D10"));
     builder.Append(ItemErrorReason.PadRight(30));
     builder.Append(ReportedOverallIqaScore.ToString("D3"));
     builder.Append(Addendums.Count.ToString("D3"));
     builder.Append(Reserved.PadRight(7));
     builder.AppendLine();
 }