ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryBusinessLogic/AbstractSaveToWord.cs

60 lines
2.1 KiB
C#
Raw Normal View History

2024-04-11 22:45:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ConfectioneryBusinessLogic.OfficePackage.HelperEnums;
using ConfectioneryBusinessLogic.OfficePackage.HelperModels;
namespace ConfectioneryBusinessLogic.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 pastry in info.Pastrys)
2024-04-11 22:45:53 +04:00
{
CreateParagraph(new WordParagraph
{
2024-04-25 23:10:23 +04:00
Texts = new List<(string, WordTextProperties)> {
(pastry.PastryName, new WordTextProperties { Size = "24", Bold = true}),
("\t"+pastry.Price.ToString(), new WordTextProperties{Size = "24"})
},
2024-04-11 22:45:53 +04:00
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Both
}
});
}
SaveWord(info);
}
/// <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);
}
}