示例#1
0
 public Component(string pValue, HL7Encoding encoding)
 {
     this.SubComponentList = new ElementCollection <SubComponent>();
     this.Encoding         = encoding;
     this.Value            = pValue;
 }
示例#2
0
 public Component(HL7Encoding encoding, bool isDelimiter = false)
 {
     this.isDelimiter      = isDelimiter;
     this.SubComponentList = new ElementCollection <SubComponent>();
     this.Encoding         = encoding;
 }
示例#3
0
 public Segment(string name, HL7Encoding encoding)
 {
     this.FieldList = new FieldCollection();
     this.Name      = name;
     this.Encoding  = encoding;
 }
示例#4
0
 public Segment(HL7Encoding encoding)
 {
     this.FieldList = new FieldCollection();
     this.Encoding  = encoding;
 }
示例#5
0
 public Field(string value, HL7Encoding encoding)
 {
     this.ComponentList = new ElementCollection <Component>();
     this.Encoding      = encoding;
     this.Value         = value;
 }
示例#6
0
 public Field(HL7Encoding encoding)
 {
     this.ComponentList = new ElementCollection <Component>();
     this.Encoding      = encoding;
 }