using SecureShopBusinessLogic.OfficePackage.HelperEnums; using SecureShopBusinessLogic.OfficePackage.HelperModels; namespace SecureShopBusinessLogic.OfficePackage { public abstract class AbstractSaveToExcel { /// /// Создание отчета /// /// public void CreateReport(ExcelInfo 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 ia in info.SecureFacilities) { InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "A", RowIndex = rowIndex, Text = ia.SecureName, StyleInfo = ExcelStyleInfoType.Text }); rowIndex++; foreach (var (Facilitie, Count) in ia.Facilities) { InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "B", RowIndex = rowIndex, Text = Facilitie, StyleInfo = ExcelStyleInfoType.TextWithBorder }); InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "C", RowIndex = rowIndex, Text = Count.ToString(), StyleInfo = ExcelStyleInfoType.TextWithBorder }); rowIndex++; } InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "A", RowIndex = rowIndex, Text = "Итого", StyleInfo = ExcelStyleInfoType.Text }); InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "C", RowIndex = rowIndex, Text = ia.TotalCount.ToString(), StyleInfo = ExcelStyleInfoType.Text }); rowIndex++; } SaveExcel(info); } /// /// Создание excel-файла /// /// protected abstract void CreateExcel(ExcelInfo info); /// /// Добавляем новую ячейку в лист /// /// protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams); /// /// Объединение ячеек /// /// protected abstract void MergeCells(ExcelMergeParameters excelParams); /// /// Сохранение файла /// /// protected abstract void SaveExcel(ExcelInfo info); } }