2023-04-03 16:52:51 +04:00
|
|
|
|
using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptBusinessLogic.OfficePackage
|
|
|
|
|
{
|
2023-04-04 19:21:57 +04:00
|
|
|
|
public abstract class AbstractSaveToPdfClient
|
2023-04-03 16:52:51 +04:00
|
|
|
|
{
|
|
|
|
|
//публичный метод создания документа. Описание методов ниже
|
|
|
|
|
public void CreateDoc(PdfInfo info)
|
|
|
|
|
{
|
|
|
|
|
CreatePdf(info);
|
|
|
|
|
|
|
|
|
|
CreateParagraph(new PdfParagraph
|
|
|
|
|
{
|
|
|
|
|
Text = info.Title,
|
|
|
|
|
Style = "NormalTitle",
|
|
|
|
|
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
CreateParagraph(new PdfParagraph
|
|
|
|
|
{
|
|
|
|
|
Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
|
|
|
|
|
Style = "Normal",
|
|
|
|
|
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//TODO
|
|
|
|
|
|
|
|
|
|
SavePdf(info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Создание pdf-файла
|
|
|
|
|
protected abstract void CreatePdf(PdfInfo info);
|
|
|
|
|
|
|
|
|
|
/// Создание параграфа с текстом
|
|
|
|
|
protected abstract void CreateParagraph(PdfParagraph paragraph);
|
|
|
|
|
|
|
|
|
|
/// Создание таблицы
|
|
|
|
|
protected abstract void CreateTable(List<string> columns);
|
|
|
|
|
|
|
|
|
|
/// Создание и заполнение строки
|
|
|
|
|
protected abstract void CreateRow(PdfRowParameters rowParameters);
|
|
|
|
|
|
|
|
|
|
/// Сохранение файла
|
|
|
|
|
protected abstract void SavePdf(PdfInfo info);
|
|
|
|
|
}
|
|
|
|
|
}
|