コード例 #1
0
 private async Task exportPDF_Prescription(dynamic information, ExportPDFOptions options)
 {
 }
コード例 #2
0
 private async Task exportPDF_MedicalReport(dynamic information, ExportPDFOptions options)
 {
 }
コード例 #3
0
        public async Task ExportPDF(dynamic information, ExportPDFType exportPDFType, ExportPDFOptions options)
        {
            switch (exportPDFType)
            {
            case ExportPDFType.Analysis:
                await exportPDF_Analysis(information, options);

                break;

            case ExportPDFType.ConsumptionReport:
                await exportPDF_MedicalReport(information, options);

                break;

            default:
                return;
            }
        }