69 lines
2.4 KiB
C#
69 lines
2.4 KiB
C#
using UniversityBusinessLogic.OfficePackage.HelperEnums;
|
|
using UniversityBusinessLogic.OfficePackage.HelperModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UniversityBusinessLogic.OfficePackage
|
|
{
|
|
public abstract class AbstractSaveToExcelWorker
|
|
{
|
|
public void CreateReport(ExcelInfoWorker 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 ps in info.PlanOfStudys)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "A",
|
|
RowIndex = rowIndex,
|
|
Text = ps.PlanOfStudyName,
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
}); ;
|
|
rowIndex++;
|
|
foreach (var discipline in ps.Disciplines)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "B",
|
|
RowIndex = rowIndex,
|
|
Text = ps.FormOfStudy,
|
|
StyleInfo =
|
|
ExcelStyleInfoType.TextWithBroder
|
|
});
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "C",
|
|
RowIndex = rowIndex,
|
|
Text = discipline,
|
|
StyleInfo =
|
|
ExcelStyleInfoType.TextWithBroder
|
|
});
|
|
rowIndex++;
|
|
}
|
|
rowIndex++;
|
|
}
|
|
SaveExcel(info);
|
|
}
|
|
protected abstract void CreateExcel(ExcelInfoWorker info);
|
|
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
|
|
protected abstract void MergeCells(ExcelMergeParameters excelParams);
|
|
protected abstract void SaveExcel(ExcelInfoWorker info);
|
|
}
|
|
}
|