Example #1
0
 public void GivenHeaderStringAddedToTheOutput()
 {
     header = new VifHeader
     {
         RECORD_TYPE_CODE = "A",
         STATE_NUMBER = "3",
         RUN_NUMBER = "1206",
         BANK_CODE = "NAB",
         PROCESS_DATE = "20141021",
         CAPTURE_BSB = "083340",
         COLLECTING_BSB = "083029",
         BUNDLE_TYPE = "1",
         EMPTY_SPACE_FILLER = string.Empty
     };
 }
Example #2
0
 public VifGenerator(VifHeader header, IEnumerable<VifDetail> details, VifTrailer trailer)
 {
     this.header = header;
     this.details = details;
     this.trailer = trailer;
 }