PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantBusinessLogic/OfficePackage/AbstractSaveToWord.cs

86 lines
3.2 KiB
C#
Raw Normal View History

2023-03-22 20:02:42 +04:00
using PrecastConcretePlantBusinessLogic.OfficePackage.HelperEnums;
using PrecastConcretePlantBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantBusinessLogic.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 component in info.Reinforceds)
{
CreateParagraph(new WordParagraph
{
2023-03-23 13:38:17 +04:00
Texts = new List<(string, WordTextProperties)> { (component.ReinforcedName, new WordTextProperties { Bold = true, Size = "24", }), (". Цена: " + component.Price.ToString(), new WordTextProperties { Size = "24", }) },
2023-03-22 20:02:42 +04:00
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Both
}
});
}
SaveWord(info);
}
2023-05-23 20:15:11 +04:00
public void CreateDocShopTable(WordInfoShopTable info)
{
CreateWord(new() { FileName = info.FileName });
CreateParagraph(new WordParagraph
{
Texts = new List<(string, WordTextProperties)> { (info.Title, new WordTextProperties { Bold = true, Size = "24", }) },
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Center
}
});
CreateTable(new()
{
Columns = new() { ("Название", 3000), ("Дата открытия", 3000), ("Адрес", 3000) },
Rows = info.Shops.Select(x => new List<string>
{
x.ShopName,
Convert.ToString(x.DateOpening),
x.Address,
})
.ToList()
});
SaveWord(new() { FileName = info.FileName });
}
2023-03-22 20:02:42 +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);
2023-05-23 20:15:11 +04:00
protected abstract void CreateTable(WordTable table);
2023-03-22 20:02:42 +04:00
/// <summary>
/// Сохранение файла
/// </summary>
/// <param name="info"></param>
protected abstract void SaveWord(WordInfo info);
}
}