using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VetClinicBusinessLogic.BusinessLogic.OfficePackage.Enums; using VetClinicBusinessLogic.BusinessLogic.OfficePackage.Models; namespace VetClinicBusinessLogic.BusinessLogic.OfficePackage { public abstract class ReportToExcel { public void CreateReportVisitService(ExcelInfoVisitService 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 pc in info.VisitServices) { InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "A", RowIndex = rowIndex, Text = pc.VisitDate.ToString(), StyleInfo = ExcelStyleInfoType.Text }); rowIndex++; foreach (var Component in pc.Services) { InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "B", RowIndex = rowIndex, Text = Component, StyleInfo = ExcelStyleInfoType.TextWithBroder }); rowIndex++; } InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "C", RowIndex = rowIndex, Text = pc.TotalCount.ToString(), StyleInfo = ExcelStyleInfoType.Text }); rowIndex++; } SaveExcel(info); } public void CreateReportServiceVisit(ExcelInfoServiceVisit 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 pc in info.VisitServices) { InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "A", RowIndex = rowIndex, Text = pc.Name.ToString(), StyleInfo = ExcelStyleInfoType.Text }); rowIndex++; foreach (var Component in pc.Visits) { InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "B", RowIndex = rowIndex, Text = Component.ToString(), StyleInfo = ExcelStyleInfoType.TextWithBroder }); rowIndex++; } InsertCellInWorksheet(new ExcelCellParameters { ColumnName = "C", RowIndex = rowIndex, Text = pc.TotalCount.ToString(), StyleInfo = ExcelStyleInfoType.Text }); rowIndex++; } SaveExcel(info); } /// /// Создание excel-файла /// /// protected abstract void CreateExcel(ExcelInfoVisitService info); /// /// Добавляем новую ячейку в лист /// /// protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams); /// /// Объединение ячеек /// /// protected abstract void MergeCells(ExcelMergeParameters excelParams); /// /// Сохранение файла /// /// protected abstract void SaveExcel(ExcelInfoVisitService info); protected abstract void SaveExcel(ExcelInfoServiceVisit info); protected abstract void CreateExcel(ExcelInfoServiceVisit info); } }