stage9_10 #16

Merged
ns.potapov merged 98 commits from stage9_10 into main 2024-05-30 04:28:50 +04:00
Showing only changes of commit e8a9d126e4 - Show all commits

View File

@ -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
}
});