예제 #1
0
파일: LA1.cs 프로젝트: snosrap/nhapi
 ///<summary>
 /// Creates a LA1.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public LA1(Message message, string description)
     : base(message, description)
 {
     data = new Type[9];
     data[0] = new IS(message, 302,"Point of Care");
     data[1] = new IS(message, 303,"Room");
     data[2] = new IS(message, 304,"Bed");
     data[3] = new HD(message,"Facility");
     data[4] = new IS(message, 306,"Location Status");
     data[5] = new IS(message, 305,"Patient Location Type");
     data[6] = new IS(message, 307,"Building");
     data[7] = new IS(message, 308,"Floor");
     data[8] = new AD(message,"Address");
 }