Rogashova_E.A._CourseWork_H.../Hospital/HospitalBusinessLogic/OfficePackage/AbstractSaveToWord.cs

73 lines
2.7 KiB
C#
Raw Normal View History

2023-05-20 06:49:33 +04:00
using HospitalBusinessLogic.OfficePackage.HelperEnums;
using HospitalBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToWord
{
public void CreateDoc(WordInfo info)
{
CreateWord(info);
CreateParagraph(new WordParagraph
{
Texts = new List<(string, WordTextProperties)> { (info.Title, new WordTextProperties { Bold = true, Size = "24", }) },
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Center
}
});
foreach (var km in info.KurseMedicines)
2023-05-20 06:49:33 +04:00
{
CreateParagraph(new WordParagraph
{
Texts = new List<(string, WordTextProperties)>
{ (km.MedicinesName, new WordTextProperties { Size = "20", Bold=true})},
2023-05-20 06:49:33 +04:00
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Both
}
});
foreach (var kurse in km.Kurses)
2023-05-20 06:49:33 +04:00
{
CreateParagraph(new WordParagraph
{
Texts = new List<(string, WordTextProperties)>
{ (kurse.Item1 + " - ", new WordTextProperties { Size = "16", Bold=false}),
(kurse.Item2, new WordTextProperties { Size = "16", Bold=false})},
2023-05-20 06:49:33 +04:00
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Both
}
});
}
2023-05-20 06:49:33 +04:00
}
SaveWord(info);
2023-05-20 06:49:33 +04:00
}
/// <summary>
/// Создание doc-файла
/// </summary>
/// <param name="info"></param>
protected abstract void CreateWord(WordInfo info);
/// <summary>
/// Создание абзаца с текстом
/// </summary>
/// <param name="paragraph"></param>
/// <returns></returns>
protected abstract void CreateParagraph(WordParagraph paragraph);
/// <summary>
/// Сохранение файла
/// </summary>
/// <param name="info"></param>
protected abstract void SaveWord(WordInfo info);
}
}