// Method for adding a 'Service Event' act to the CDA document
        public void AddDocumentationOf(NPFIT_000050_Act template)
        {
            // If this is the first 'Service Event' to be added then initiate the list of 'Service Events'.
            if (documentationOf == null)
            {
                documentationOf = new List <actRel_DocumentationOf_000050>();
            }

            actRel_DocumentationOf_000050 thisDocumentationOf = new actRel_DocumentationOf_000050();

            thisDocumentationOf.Act = template;
            documentationOf.Add(thisDocumentationOf);
        }
        // Method for adding a 'Service Event' act to the CDA document
        public void AddDocumentationOf(NPFIT_000050_Act template)
        {
            // If this is the first 'Service Event' to be added then initiate the list of 'Service Events'.
            if (documentationOf == null)
            {
                documentationOf = new List<actRel_DocumentationOf_000050>();
            }

            actRel_DocumentationOf_000050 thisDocumentationOf = new actRel_DocumentationOf_000050();

            thisDocumentationOf.Act = template;
            documentationOf.Add(thisDocumentationOf);
        }