using LawFirmBusinessLogic.OfficePackages.HelperEnums; using LawFirmBusinessLogic.OfficePackages.HelperModels; namespace LawFirmBusinessLogic.OfficePackages { public abstract class AbstractSaveToExcelClientsHearing { /// /// Создание отчета /// /// public void CreateReport(ExcelClientsHearingInfo 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; foreach (var ch in info.ClientsHearing) { 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); } /// /// Создание excel-файла /// /// protected abstract void CreateExcel(ExcelClientsHearingInfo info); /// /// Добавляем новую ячейку в лист /// /// protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams); /// /// Объединение ячеек /// /// protected abstract void MergeCells(ExcelMergeParameters excelParams); /// /// Сохранение файла /// /// protected abstract void SaveExcel(ExcelClientsHearingInfo info); } }