コード例 #1
0
 public CobasE411HeaderRecord(string rawString)
 {
     RecordType   = new AstmField(0, "H");
     RecordLength = 13;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #2
0
 public Access2PatientInformationRecord(string rawString)
 {
     RecordType   = new AstmField(0, "P");
     RecordLength = 34;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #3
0
 public Ca500TestOrderRecord(string[] rawData) //: this(string.Empty)
 {
     RecordType   = new AstmField(0, "O");
     RecordLength = 11;
     DefaultValue = string.Empty;
     Parse(rawData);
 }
コード例 #4
0
 public ImmuliteXpiResultRecord(string rawString)
 {
     RecordType   = new AstmField(0, "R");
     RecordLength = 13;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #5
0
 public CI4100TestOrderRecord(string[] rawString)
 {
     RecordType   = new AstmField(0, "O");
     RecordLength = 26;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #6
0
 public Ca500ResultRecord(string[] rawData)
 {
     RecordType   = new AstmField(0, "R");
     RecordLength = 12;
     DefaultValue = string.Empty;
     Parse(rawData);
 }
コード例 #7
0
 public ImmuliteXpiTestOrderRecord(string rawString)
 {
     RecordType   = new AstmField(0, "O");
     RecordLength = 30;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #8
0
 public CobasE6000ResultRecord(string rawString)
 {
     RecordType   = new AstmField(0, "R");
     RecordLength = 13;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #9
0
 public CI4100RequestInformationRecord(string[] rawString)
 {
     RecordType   = new AstmField(0, "Q");
     RecordLength = 12;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #10
0
 public DxI800TestOrderRecord(string rawString)
 {
     RecordType   = new AstmField(0, "O");
     RecordLength = string.IsNullOrEmpty(rawString) ? 15 : 25;
     DefaultValue = string.Empty;
     Parse(rawString);
 }
コード例 #11
0
 public Ca500TerminationRecord() //: this(string.Empty)
 {
     RecordType   = new AstmField(0, "L");
     RecordLength = 2;
     DefaultValue = string.Empty;
 }
コード例 #12
0
 public Ca500PatientRecord()
 {
     RecordType   = new AstmField(0, "P");
     RecordLength = 1;
     DefaultValue = string.Empty;
 }
コード例 #13
0
        //public AstmField DateOfBirth  = new AstmField(7);
        //public AstmField PatientSex  = new AstmField(8);

        #endregion

        #region Constructor

        public CI4100PatientInformationRecord() : this(string.Empty)
        {
            RecordType   = new AstmField(0, "P");
            RecordLength = 26;
            DefaultValue = string.Empty;
        }
コード例 #14
0
 public Ca500HeaderRecord() //: this(string.Empty)
 {
     RecordType   = new AstmField(0, "H");
     RecordLength = 12;
     DefaultValue = string.Empty;
 }
コード例 #15
0
 public Ca500RequestInformationRecord() //: this(string.Empty)
 {
     RecordType   = new AstmField(0, "Q");
     RecordLength = 6;
     DefaultValue = string.Empty;
 }
コード例 #16
0
 public CI4100TerminationRecord()
 {
     RecordType   = new AstmField(0, "L");
     RecordLength = 1;
     DefaultValue = string.Empty;
 }
コード例 #17
0
 public Ca500ResultRecord()
 {
     RecordType   = new AstmField(0, "R");
     RecordLength = 12;
     DefaultValue = string.Empty;
 }