예제 #1
0
        /// <summary>
        /// Create a New Report Using the Agency Default Template for the Module.
        /// </summary>
        public Guid CreateReport(Guid agencyId, bool isSupplement, TReportDetails details)
        {
            // Get the Agency Default Template for the Module
            var template = TemplateProvider.GetAgencyDefault(agencyId, ReportModule);

            // Create the Report
            return(CreateReport(template, isSupplement, details).Id);
        }