Beispiel #1
0
 public Group(EDIParser eDIParser)
 {
     // TODO: Complete member initialization
     this.eDIParser = eDIParser;
     this.TransactionSet = new List<TransactionSet>();
 }
Beispiel #2
0
 public void ParseMessage()
 {
     EDIParser parser = new EDIParser();           
     parser.LoadFile(new StringReader(Properties.Resources.EDI_837));
     var ret =parser.Groups[0].TransactionSet[0].GetMessage();
 }
Beispiel #3
0
 public TransactionSet(EDIParser eDIParser)
 {
     this.Segments  = new List <SegmentBase>();
     this.eDIParser = eDIParser;
 }
Beispiel #4
0
 public Group(EDIParser eDIParser)
 {
     // TODO: Complete member initialization
     this.eDIParser      = eDIParser;
     this.TransactionSet = new List <TransactionSet>();
 }
Beispiel #5
0
 public TransactionSet(EDIParser eDIParser)
 {
     this.Segments = new List<SegmentBase>();            
     this.eDIParser = eDIParser;
 }