diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/AbstractSaveToWordCoursesByProcedures.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/AbstractSaveToWordCoursesByProcedures.cs index 7fc2e1b..c03f470 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/AbstractSaveToWordCoursesByProcedures.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/AbstractSaveToWordCoursesByProcedures.cs @@ -29,14 +29,15 @@ namespace PolyclinicBusinessLogic.OfficePackage { CreateParagraph(new WordParagraph { - Texts = new List<(string, WordTextProperties)> { - (sushi.SushiName, new WordTextProperties { Bold = true, Size = "24", }), - (" цена: " + sushi.Price.ToString() + " рублей", new WordTextProperties { Size = "24", }) + Texts = new List<(string, WordTextProperties)> + { + ("Количество пилюль в день: " + course.PillsPerDay.ToString() + " единиц", new WordTextProperties{ Size = "16"}), + ("Количество дней приёма: " + course.DaysCount.ToString() + " дней", new WordTextProperties{ Size = "16"}), }, TextProperties = new WordTextProperties { - Size = "24", + Size = "16", JustificationType = WordJustificationType.Both } });