Beispiel #1
0
        public static void PopulateStandardValuesV01(QueryControlActEventBean <QueryCriteria> controlActEvent)
        {
            PopulateStandardValuesV01((ControlActEventBean)controlActEvent);
            ServiceDeliveryLocationBean location = new ServiceDeliveryLocationBean();

            PopulateLocation(location);
            controlActEvent.Location = location;
        }
Beispiel #2
0
        public static void PopulateStandardValues(ControlActEventBean controlActEvent)
        {
            controlActEvent.EventId       = new Identifier("2.16.840.1.113883.1.6", "8141234");
            controlActEvent.StatusCode    = CodeResolverRegistry.Lookup <ActStatus>("new");
            controlActEvent.EffectiveTime = EFFECTIVE_TIME;
            controlActEvent.Author        = CreateAuthorV01();
            ServiceDeliveryLocationBean location = new ServiceDeliveryLocationBean();

            PopulateLocation(location);
            controlActEvent.Location = location;
        }
Beispiel #3
0
 private static void PopulateLocation(ServiceDeliveryLocationBean location)
 {
     location.SetIdentifier(new Identifier("2.16.124.113620.1.1.11111", "1"));
     location.SetName("Intelliware's Pharmacy");
 }