示例#1
0
 public void SetInformant(NPFIT_000085_Role template)
 {
     informant      = new p_informant_000085();
     informant.Role = template;
 }
示例#2
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);
        }
 public void SetInformant(NPFIT_000085_Role template)
 {
     informant = new p_informant_000085();
     informant.Role = template;
 }