2023-03-10 16:43:19 +04:00
|
|
|
|
using SushiBarBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using SushiBarBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarBusinessLogic.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
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2023-03-10 18:23:51 +04:00
|
|
|
|
foreach (var sushi in info.ListSushi)
|
2023-03-10 16:43:19 +04:00
|
|
|
|
{
|
|
|
|
|
CreateParagraph(new WordParagraph
|
|
|
|
|
{
|
2023-03-23 16:33:10 +04:00
|
|
|
|
Texts = new List<(string, WordTextProperties)> {
|
2023-03-10 18:23:51 +04:00
|
|
|
|
(sushi.SushiName+' ', new WordTextProperties { Size = "24", Bold = true }),
|
|
|
|
|
(sushi.Price.ToString(), new WordTextProperties { Size = "24" })
|
|
|
|
|
},
|
2023-03-10 16:43:19 +04:00
|
|
|
|
TextProperties = new WordTextProperties
|
|
|
|
|
{
|
|
|
|
|
Size = "24",
|
|
|
|
|
JustificationType = WordJustificationType.Both
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SaveWord(info);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 16:33:10 +04:00
|
|
|
|
public void CreateShopsDoc(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
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<WordRow> rows = new List<WordRow>();
|
|
|
|
|
rows.Add(new WordRow
|
|
|
|
|
{
|
2023-03-23 16:41:06 +04:00
|
|
|
|
Rows = new List<(string, WordTextProperties)> {
|
2023-03-23 16:33:10 +04:00
|
|
|
|
("Название", new WordTextProperties { Size = "24", Bold = true }),
|
|
|
|
|
("Адрес", new WordTextProperties { Size = "24", Bold = true }),
|
|
|
|
|
("Дата открытия", new WordTextProperties { Size = "24", Bold = true })
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
foreach (var shop in info.Shops)
|
|
|
|
|
{
|
|
|
|
|
rows.Add(new WordRow
|
|
|
|
|
{
|
2023-03-23 16:41:06 +04:00
|
|
|
|
Rows = new List<(string, WordTextProperties)> {
|
2023-03-23 16:33:10 +04:00
|
|
|
|
(shop.ShopName, new WordTextProperties { Size = "24" }),
|
|
|
|
|
(shop.Address, new WordTextProperties { Size = "24" }),
|
|
|
|
|
(shop.DateOpening.ToShortDateString(), new WordTextProperties { Size = "24" })
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CreateTable(rows);
|
|
|
|
|
|
|
|
|
|
SaveWord(info);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-10 16:43:19 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание doc-файла
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
|
|
|
|
protected abstract void CreateWord(WordInfo info);
|
|
|
|
|
|
2023-03-23 16:33:10 +04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание таблицы
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="rows"></param>
|
|
|
|
|
protected abstract void CreateTable(List<WordRow> rows);
|
|
|
|
|
|
2023-03-10 16:43:19 +04:00
|
|
|
|
/// <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);
|
|
|
|
|
}
|
|
|
|
|
}
|