Пример #1
0
        // Method for adding an 'informant' participation to the CDA document
        public void AddInformant(NPFIT_000085_Role template)
        {
            // If this is the first informant to be added then initiate the list of informants.
            if (informant == null)
            {
                informant = new List <p_informant_000085>();
            }

            p_informant_000085 thisInformant = new p_informant_000085();

            thisInformant.Role = template;
            informant.Add(thisInformant);
        }
Пример #2
0
 public void SetInformantTemplate(NPFIT_000085_Role template)
 {
     act.SetInformant(template);
 }
Пример #3
0
        // Method for adding an 'informant' participation to the CDA document
        public void AddInformant(NPFIT_000085_Role template)
        {
            // If this is the first informant to be added then initiate the list of informants.
            if (informant == null)
            {
                informant = new List<p_informant_000085>();
            }

            p_informant_000085 thisInformant = new p_informant_000085();

            thisInformant.Role = template;
            informant.Add(thisInformant);
        }
Пример #4
0
 public void SetInformant(NPFIT_000085_Role template)
 {
     informant      = new p_informant_000085();
     informant.Role = template;
 }
Пример #5
0
 public void SetInformant(NPFIT_000085_Role template)
 {
     informant = new p_informant_000085();
     informant.Role = template;
 }
Пример #6
0
 public void SetInformantTemplate(NPFIT_000085_Role template)
 {
     act.SetInformant(template);
 }