Example #1
0
File: LA1.cs Project: 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, 0,"Point of care (IS)");
     data[1] = new IS(message, 0,"Room");
     data[2] = new IS(message, 0,"Bed");
     data[3] = new HD(message,"Facility (HD)");
     data[4] = new IS(message, 0,"Location status");
     data[5] = new IS(message, 0,"Person location type");
     data[6] = new IS(message, 0,"Building");
     data[7] = new IS(message, 0,"Floor");
     data[8] = new AD(message,"Address");
 }