internal void AddParticipantTemplate(NPFIT_000089_Role template, p_participation_000089.EncounterParticipationType type)
        {
            if (participant == null) participant = new List<p_participation_000089>();

            p_participation_000089 thisParticipant = new p_participation_000089(type);
            thisParticipant.Role = template;

            participant.Add(thisParticipant);
        }
        public void AddEncounterParticipantTemplate(NPFIT_000089_Role template, p_participation_000089.EncounterParticipationType participantType)
        {
            GeneralParticipationClass participation = new GeneralParticipationClass();
            participation.typeCode = "RESP";
            participation.Role = template;
            participation.typeCode = StringEnum.GetStringValue(participantType);
            participation.itsParticipantTag = "responsibleParty";
            participation.itsRoleTag = "assignedEntity";

            act.AddParticipantTemplate(participation);
        }
Example #3
0
        public void AddEncounterParticipantTemplate(NPFIT_000089_Role template, p_participation_000089.EncounterParticipationType participantType)
        {
            GeneralParticipationClass participation = new GeneralParticipationClass();

            participation.typeCode          = "RESP";
            participation.Role              = template;
            participation.typeCode          = StringEnum.GetStringValue(participantType);
            participation.itsParticipantTag = "responsibleParty";
            participation.itsRoleTag        = "assignedEntity";

            act.AddParticipantTemplate(participation);
        }
 public void AddEncounterParticipantTemplate(NPFIT_000089_Role template, p_participation_000089.EncounterParticipationType participantType, IVLTS_Helper time)
 {
     act.AddParticipantTemplate(template, participantType, time);
 }