WritePrescriptions() private method

private WritePrescriptions ( ) : void
return void
Example #1
0
        public static void Write(TaskDocumentWriter taskWriter)
        {
            if (taskWriter.DataModel.Catalog.Prescriptions == null ||
                !taskWriter.DataModel.Catalog.Prescriptions.Any())
                return;

            var writer = new PrescriptionWriter(taskWriter);
            writer.WritePrescriptions();
        }
Example #2
0
        public static void Write(TaskDocumentWriter taskWriter)
        {
            if (taskWriter.DataModel.Catalog.Prescriptions == null ||
                !taskWriter.DataModel.Catalog.Prescriptions.Any())
            {
                return;
            }

            var writer = new PrescriptionWriter(taskWriter);

            writer.WritePrescriptions();
        }