PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmBusinessLogic/OfficePackages/AbstractSaveToExcelClientsConsultation.cs

85 lines
2.2 KiB
C#
Raw Normal View History

using LawFirmBusinessLogic.OfficePackages.HelperEnums;
using LawFirmBusinessLogic.OfficePackages.HelperModels;
namespace LawFirmBusinessLogic.OfficePackages
{
2024-05-28 03:11:22 +04:00
public abstract class AbstractSaveToExcelClientsConsultation
{
/// <summary>
/// Создание отчета
/// </summary>
/// <param name="info"></param>
2024-05-28 03:11:22 +04:00
public void CreateReport(ExcelClientsConsultationInfo info)
{
CreateExcel(info);
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = 1,
Text = info.Title,
StyleInfo = ExcelStyleInfoType.Title
});
MergeCells(new ExcelMergeParameters
{
CellFromName = "A1",
CellToName = "C1"
});
uint rowIndex = 2;
2024-05-28 03:11:22 +04:00
foreach (var ch in info.ClientsConsultation)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = ch.ClientFIO,
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
foreach (var hearing in ch.Hearings)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = rowIndex,
Text = hearing.Court,
StyleInfo =
ExcelStyleInfoType.TextWithBroder
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
Text = hearing.HearingDate.ToString(),
StyleInfo =
ExcelStyleInfoType.TextWithBroder
});
rowIndex++;
}
}
SaveExcel(info);
}
/// <summary>
/// Создание excel-файла
/// </summary>
/// <param name="info"></param>
2024-05-28 03:11:22 +04:00
protected abstract void CreateExcel(ExcelClientsConsultationInfo info);
/// <summary>
/// Добавляем новую ячейку в лист
/// </summary>
/// <param name="cellParameters"></param>
protected abstract void InsertCellInWorksheet(ExcelCellParameters
excelParams);
/// <summary>
/// Объединение ячеек
/// </summary>
/// <param name="mergeParameters"></param>
protected abstract void MergeCells(ExcelMergeParameters excelParams);
/// <summary>
/// Сохранение файла
/// </summary>
/// <param name="info"></param>
2024-05-28 03:11:22 +04:00
protected abstract void SaveExcel(ExcelClientsConsultationInfo info);
}
}