2024-04-07 10:17:23 +04:00
|
|
|
|
using GiftShopBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using GiftShopBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
|
|
|
|
|
namespace GiftShopBusinessLogic.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 gift in info.Gifts)
|
|
|
|
|
{
|
|
|
|
|
CreateParagraph(new WordParagraph
|
|
|
|
|
{
|
|
|
|
|
Texts = new List<(string, WordTextProperties)>
|
|
|
|
|
{ (gift.GiftName, new WordTextProperties { Size = "24", Bold = true }),
|
|
|
|
|
("\t" + gift.Price.ToString(), new WordTextProperties { Size = "24" }) },
|
|
|
|
|
TextProperties = new WordTextProperties
|
|
|
|
|
{
|
|
|
|
|
Size = "24",
|
|
|
|
|
JustificationType = WordJustificationType.Both
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SaveWord(info);
|
|
|
|
|
}
|
2024-04-09 17:02:29 +04:00
|
|
|
|
/// <summary>
|
2024-04-07 10:17:23 +04:00
|
|
|
|
/// Создание doc-файла
|
2024-04-09 17:02:29 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
2024-04-07 10:17:23 +04:00
|
|
|
|
protected abstract void CreateWord(WordInfo info);
|
2024-04-09 17:02:29 +04:00
|
|
|
|
/// <summary>
|
2024-04-07 10:17:23 +04:00
|
|
|
|
/// Создание абзаца с текстом
|
2024-04-09 17:02:29 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="paragraph"></param>
|
|
|
|
|
/// <returns></returns>
|
2024-04-07 10:17:23 +04:00
|
|
|
|
protected abstract void CreateParagraph(WordParagraph paragraph);
|
2024-04-09 17:02:29 +04:00
|
|
|
|
/// <summary>
|
2024-04-07 10:17:23 +04:00
|
|
|
|
/// Сохранение файла
|
2024-04-09 17:02:29 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
2024-04-07 10:17:23 +04:00
|
|
|
|
protected abstract void SaveWord(WordInfo info);
|
|
|
|
|
}
|
|
|
|
|
}
|