PIbd-22_Bazunov_AI_Hotel/Hotel/HotelBusinessLogic/OfficePackage/AbstractSaveToPdf.cs
2023-05-19 17:52:18 +04:00

60 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using HotelBusinessLogic.OfficePackage.HelpersEnums;
using HotelBusinessLogic.OfficePackage.HelpersModels;
namespace HotelBusinessLogic.OfficePackage;
public abstract class AbstractSaveToPdf
{
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
});
CreateTable(new List<string> { "3cm", "3cm", "3cm", "3cm", "3cm", "10cm" });
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "Фамилия", "Имя", "Отчество", "Заселение", "Выселение", "Набор" },
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
foreach (var model in info.Guest)
{
CreateRow(new PdfRowParameters
{
Texts = new List<string>
{
model.SecondName,
model.Name,
model.LastName,
model.StartDate.ToShortDateString(),
model.EndDate.ToShortDateString(),
string.Join(",", model.CleaningInstruments.Values.Select(x => x.Type))
},
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});
}
CreateParagraph(new PdfParagraph
{
Text = $"Summary: {info.Guest.Count}\t",
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Right
});
SavePdf(info);
}
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);
}