コード例 #1
0
ファイル: Field.cs プロジェクト: kalatchev/HL7-dotnetcore
 public Field(string value, HL7Encoding encoding)
 {
     this.ComponentList = new ComponentCollection();
     this.Encoding      = encoding;
     this.Value         = value;
 }
コード例 #2
0
ファイル: Component.cs プロジェクト: 3v07/HL7-dotnetcore
 public Component(string pValue, HL7Encoding encoding)
 {
     this.SubComponentList = new List <SubComponent>();
     this.Encoding         = encoding;
     this.Value            = pValue;
 }
コード例 #3
0
ファイル: Field.cs プロジェクト: kalatchev/HL7-dotnetcore
 public Field(HL7Encoding encoding)
 {
     this.ComponentList = new ComponentCollection();
     this.Encoding      = encoding;
 }
コード例 #4
0
ファイル: Component.cs プロジェクト: 3v07/HL7-dotnetcore
 public Component(HL7Encoding encoding, bool isDelimiter = false)
 {
     this.isDelimiter      = isDelimiter;
     this.SubComponentList = new List <SubComponent>();
     this.Encoding         = encoding;
 }
コード例 #5
0
 public Segment(string name, HL7Encoding encoding)
 {
     this.FieldList = new FieldCollection();
     this.Name      = name;
     this.Encoding  = encoding;
 }
コード例 #6
0
 public Segment(HL7Encoding encoding)
 {
     this.FieldList = new FieldCollection();
     this.Encoding  = encoding;
 }
コード例 #7
0
ファイル: Component.cs プロジェクト: kfrancis/HL7-dotnetcore
 public Component(HL7Encoding encoding)
 {
     this.SubComponentList = new List <SubComponent>();
     this.Encoding         = encoding;
 }
コード例 #8
0
 public Segment(HL7Encoding encoding)
 {
     this.FieldList = new FieldCollection();
     this.Encoding  = encoding;
     this.Name      = string.Empty;
 }