コード例 #1
0
        private void AddInformationRecipient(NPFIT_000080_Role template, p_recipient_000080.type type)
        {
            if (informationRecipient == null)
            {
                informationRecipient = new List <p_recipient_000080>();
            }

            p_recipient_000080 thisRecipient = new p_recipient_000080(type);

            thisRecipient.Role = template;

            informationRecipient.Add(thisRecipient);
        }
コード例 #2
0
        private void AddInformationRecipient(NPFIT_000080_Role template, p_recipient_000080.type type)
        {
            if (informationRecipient == null)
            {
                informationRecipient = new List<p_recipient_000080>();
            }

            p_recipient_000080 thisRecipient = new p_recipient_000080(type);
            thisRecipient.Role = template;

            informationRecipient.Add(thisRecipient);
        }
コード例 #3
0
 public void AddTrackerInformationRecipient(NPFIT_000080_Role template)
 {
     AddInformationRecipient(template, p_recipient_000080.type.tracker);
 }
コード例 #4
0
 public void AddPrimaryInformationRecipient(NPFIT_000080_Role template)
 {
     AddInformationRecipient(template, p_recipient_000080.type.primary);
 }
コード例 #5
0
 public void AddPrimaryInformationRecipient(NPFIT_000080_Role template)
 {
     AddInformationRecipient(template, p_recipient_000080.type.primary);
 }
コード例 #6
0
 public void AddTrackerInformationRecipient(NPFIT_000080_Role template)
 {
     AddInformationRecipient(template, p_recipient_000080.type.tracker);
 }