예제 #1
0
파일: V3.cs 프로젝트: hpbAndrewBender/EDI
 public V3()
 {
     InvoiceFileHeaderRecord = new R01_InvoiceFileHeader();
     Invoices = new List <InvoiceItem>();
     InvoiceFileTrailerRecord = new R95_InvoiceFileTrailer();
     Initialized = true;
 }
예제 #2
0
파일: V3.cs 프로젝트: hpbAndrewBender/EDI
 public void Dispose()
 {
     InvoiceFileTrailerRecord = null;
     Invoices = null;
     InvoiceFileTrailerRecord = null;
     Initialized = false;
 }