diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/BankYouBankruptBusinessLogic.csproj b/BankYouBankrupt/BankYouBankruptBusinessLogic/BankYouBankruptBusinessLogic.csproj
index 59eb462..4eea3c3 100644
--- a/BankYouBankrupt/BankYouBankruptBusinessLogic/BankYouBankruptBusinessLogic.csproj
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/BankYouBankruptBusinessLogic.csproj
@@ -8,11 +8,12 @@
-
+
+
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToExcelCashier.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToExcelCashier.cs
new file mode 100644
index 0000000..dee00d6
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToExcelCashier.cs
@@ -0,0 +1,51 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage
+{
+ public abstract class AbstractSaveToExcelCashier
+ {
+ //Создание отчета. Описание методов ниже
+ 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;
+
+ ///TODO
+
+ 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);
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToExcelClient.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToExcelClient.cs
new file mode 100644
index 0000000..8a267ac
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToExcelClient.cs
@@ -0,0 +1,51 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage
+{
+ public abstract class AbstractSaveToExcelClient
+ {
+ //Создание отчета. Описание методов ниже
+ 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;
+
+ //TODO
+
+ 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);
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToPdfCashier.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToPdfCashier.cs
new file mode 100644
index 0000000..091dff8
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToPdfCashier.cs
@@ -0,0 +1,52 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage
+{
+ public abstract class AbstractSaveToPdfCashier
+ {
+ //публичный метод создания документа. Описание методов ниже
+ public void CreateDoc(PdfInfo info)
+ {
+ CreatePdf(info);
+
+ CreateParagraph(new PdfParagraph
+ {
+ Text = info.Title,
+ Style = "NormalTitle",
+ ParagraphAlignment = PdfParagraphAlignmentType.Center
+ });
+
+ CreateParagraph(new PdfParagraph
+ {
+ Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
+ Style = "Normal",
+ ParagraphAlignment = PdfParagraphAlignmentType.Center
+ });
+
+ //TODO
+
+ SavePdf(info);
+ }
+
+ /// Создание pdf-файла
+ protected abstract void CreatePdf(PdfInfo info);
+
+ /// Создание параграфа с текстом
+ protected abstract void CreateParagraph(PdfParagraph paragraph);
+
+ /// Создание таблицы
+ protected abstract void CreateTable(List columns);
+
+ /// Создание и заполнение строки
+ protected abstract void CreateRow(PdfRowParameters rowParameters);
+
+ /// Сохранение файла
+ protected abstract void SavePdf(PdfInfo info);
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToPdfClient.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToPdfClient.cs
new file mode 100644
index 0000000..96fd1fd
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToPdfClient.cs
@@ -0,0 +1,52 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage
+{
+ public abstract class AbstractSaveToPdfCLient
+ {
+ //публичный метод создания документа. Описание методов ниже
+ public void CreateDoc(PdfInfo info)
+ {
+ CreatePdf(info);
+
+ CreateParagraph(new PdfParagraph
+ {
+ Text = info.Title,
+ Style = "NormalTitle",
+ ParagraphAlignment = PdfParagraphAlignmentType.Center
+ });
+
+ CreateParagraph(new PdfParagraph
+ {
+ Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
+ Style = "Normal",
+ ParagraphAlignment = PdfParagraphAlignmentType.Center
+ });
+
+ //TODO
+
+ SavePdf(info);
+ }
+
+ /// Создание pdf-файла
+ protected abstract void CreatePdf(PdfInfo info);
+
+ /// Создание параграфа с текстом
+ protected abstract void CreateParagraph(PdfParagraph paragraph);
+
+ /// Создание таблицы
+ protected abstract void CreateTable(List columns);
+
+ /// Создание и заполнение строки
+ protected abstract void CreateRow(PdfRowParameters rowParameters);
+
+ /// Сохранение файла
+ protected abstract void SavePdf(PdfInfo info);
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToWordCashier.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToWordCashier.cs
new file mode 100644
index 0000000..cc28715
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToWordCashier.cs
@@ -0,0 +1,43 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage
+{
+ public abstract class AbstractSaveToWordCashier
+ {
+ //метод создания документа
+ public void CreateDoc(WordInfo info)
+ {
+ CreateWord(info);
+
+ //создание ряда абзацев
+ CreateParagraph(new WordParagraph
+ {
+ Texts = new List<(string, WordTextProperties)> { (info.Title, new WordTextProperties { Bold = true, Size = "24", }) },
+ TextProperties = new WordTextProperties
+ {
+ Size = "24",
+ JustificationType = WordJustificationType.Center
+ }
+ });
+
+ //TODO
+
+ SaveWord(info);
+ }
+
+ // Создание doc-файла
+ protected abstract void CreateWord(WordInfo info);
+
+ // Создание абзаца с текстом
+ protected abstract void CreateParagraph(WordParagraph paragraph);
+
+ // Сохранение файла
+ protected abstract void SaveWord(WordInfo info);
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToWordClient.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToWordClient.cs
new file mode 100644
index 0000000..1547b3a
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/AbstractSaveToWordClient.cs
@@ -0,0 +1,43 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage
+{
+ public abstract class AbstractSaveToWordClient
+ {
+ //метод создания документа
+ public void CreateDoc(WordInfo info)
+ {
+ CreateWord(info);
+
+ //создание ряда абзацев
+ CreateParagraph(new WordParagraph
+ {
+ Texts = new List<(string, WordTextProperties)> { (info.Title, new WordTextProperties { Bold = true, Size = "24", }) },
+ TextProperties = new WordTextProperties
+ {
+ Size = "24",
+ JustificationType = WordJustificationType.Center
+ }
+ });
+
+ //TODO
+
+ SaveWord(info);
+ }
+
+ // Создание doc-файла
+ protected abstract void CreateWord(WordInfo info);
+
+ // Создание абзаца с текстом
+ protected abstract void CreateParagraph(WordParagraph paragraph);
+
+ // Сохранение файла
+ protected abstract void SaveWord(WordInfo info);
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs
new file mode 100644
index 0000000..619360a
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperEnums
+{
+ //вспомогательное перечисление для оформления exel
+ public enum ExcelStyleInfoType
+ {
+ //заголовок
+ Title,
+
+ //просто текст
+ Text,
+
+ //текст в рамке
+ TextWithBroder
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs
new file mode 100644
index 0000000..9c28638
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperEnums
+{
+ //вспомогательное перечисление для оформления pdf документа
+ public enum PdfParagraphAlignmentType
+ {
+ //либо по центру
+ Center,
+
+ //либо с левого края
+ Left,
+
+ //либо с правого края
+ Right
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs
new file mode 100644
index 0000000..ce97187
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperEnums
+{
+ //вспомогательное перечисление для настройки формата word документа
+ public enum WordJustificationType
+ {
+ //выравниваем либо по центру
+ Center,
+
+ //либо на всю ширину
+ Both
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
new file mode 100644
index 0000000..0170cec
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
@@ -0,0 +1,28 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //информация по ячейке в таблице excel
+ public class ExcelCellParameters
+ {
+ //название колонки
+ public string ColumnName { get; set; } = string.Empty;
+
+ //строка
+ public uint RowIndex { get; set; }
+
+ //тект в ячейке
+ public string Text { get; set; } = string.Empty;
+
+ //геттер для того, чтобы не искать каждый раз
+ public string CellReference => $"{ColumnName}{RowIndex}";
+
+ //в каком стиле выводить информацию
+ public ExcelStyleInfoType StyleInfo { get; set; }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs
new file mode 100644
index 0000000..a54be94
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs
@@ -0,0 +1,22 @@
+using BlacksmithWorkshopContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //информация по excel файлу, который хотим создать
+ public class ExcelInfo
+ {
+ //название файла
+ public string FileName { get; set; } = string.Empty;
+
+ //заголовок
+ public string Title { get; set; } = string.Empty;
+
+ //список заготовок по изделиям
+ public List ManufactureWorkPieces { get; set; } = new();
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs
new file mode 100644
index 0000000..bed401a
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //информация для объединения ячеек
+ public class ExcelMergeParameters
+ {
+ public string CellFromName { get; set; } = string.Empty;
+
+ public string CellToName { get; set; } = string.Empty;
+
+ //гетер для указания диапазона для объединения, чтобы каждый раз его не вычислять
+ public string Merge => $"{CellFromName}:{CellToName}";
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
new file mode 100644
index 0000000..65f6bdf
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
@@ -0,0 +1,24 @@
+using BlacksmithWorkshopContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //общая информация по pdf файлу
+ public class PdfInfo
+ {
+ public string FileName { get; set; } = string.Empty;
+
+ public string Title { get; set; } = string.Empty;
+
+ public DateTime DateFrom { get; set; }
+
+ public DateTime DateTo { get; set; }
+
+ //перечень заказов за указанный период для вывода/сохранения
+ public List Orders { get; set; } = new();
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs
new file mode 100644
index 0000000..d917830
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfParagraph.cs
@@ -0,0 +1,20 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //информация п параграфу в pdf документе
+ public class PdfParagraph
+ {
+ public string Text { get; set; } = string.Empty;
+
+ public string Style { get; set; } = string.Empty;
+
+ //информация по выравниванию текста в параграфе
+ public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
new file mode 100644
index 0000000..b7c698f
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/PdfRowParameters.cs
@@ -0,0 +1,22 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //информация по параметрам строк таблицы
+ public class PdfRowParameters
+ {
+ //набор текстов
+ public List Texts { get; set; } = new();
+
+ //стиль к текстам
+ public string Style { get; set; } = string.Empty;
+
+ //как выравниваем
+ public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordInfo.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordInfo.cs
new file mode 100644
index 0000000..7e163c6
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordInfo.cs
@@ -0,0 +1,20 @@
+using BlacksmithWorkshopContracts.ViewModels;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //общая информация по документу
+ public class WordInfo
+ {
+ public string FileName { get; set; } = string.Empty;
+
+ public string Title { get; set; } = string.Empty;
+
+ //список заготовок для вывода и сохранения
+ public List Manufactures { get; set; } = new();
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
new file mode 100644
index 0000000..d326090
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //модель параграфов, которые есть в тексте
+ public class WordParagraph
+ {
+ //набор текстов в абзаце (для случая, если в абзаце текст разных стилей)
+ public List<(string, WordTextProperties)> Texts { get; set; } = new();
+
+ //свойства параграфа, если они есть
+ public WordTextProperties? TextProperties { get; set; }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs
new file mode 100644
index 0000000..b01606e
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs
@@ -0,0 +1,22 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.HelperModels
+{
+ //модель свойств текста, которые нам нужны в word документе
+ public class WordTextProperties
+ {
+ //размере текста
+ public string Size { get; set; } = string.Empty;
+
+ //надо ли делать его жирным
+ public bool Bold { get; set; }
+
+ //выравнивание
+ public WordJustificationType JustificationType { get; set; }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToExcel.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToExcel.cs
new file mode 100644
index 0000000..db80012
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToExcel.cs
@@ -0,0 +1,393 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using DocumentFormat.OpenXml.Packaging;
+using DocumentFormat.OpenXml.Spreadsheet;
+using DocumentFormat.OpenXml.Office2010.Excel;
+using DocumentFormat.OpenXml.Office2013.Excel;
+using DocumentFormat.OpenXml.Office2016.Excel;
+using DocumentFormat.OpenXml;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.Implements
+{
+ public class SaveToExcel : AbstractSaveToExcelCashier
+ {
+ private SpreadsheetDocument? _spreadsheetDocument;
+
+ private SharedStringTablePart? _shareStringPart;
+
+ private Worksheet? _worksheet;
+
+ //Настройка стилей для файла
+ private static void CreateStyles(WorkbookPart workbookpart)
+ {
+ var sp = workbookpart.AddNewPart();
+ sp.Stylesheet = new Stylesheet();
+
+ //настройка шрифта простого текста
+ var fonts = new Fonts() { Count = 2U, KnownFonts = true };
+
+ var fontUsual = new Font();
+ fontUsual.Append(new FontSize() { Val = 12D });
+ fontUsual.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Theme = 1U });
+ fontUsual.Append(new FontName() { Val = "Times New Roman" });
+ fontUsual.Append(new FontFamilyNumbering() { Val = 2 });
+ fontUsual.Append(new FontScheme() { Val = FontSchemeValues.Minor });
+
+ //настройка шрифта заголока
+ var fontTitle = new Font();
+ fontTitle.Append(new Bold());
+ fontTitle.Append(new FontSize() { Val = 14D });
+ fontTitle.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Theme = 1U });
+ fontTitle.Append(new FontName() { Val = "Times New Roman" });
+ fontTitle.Append(new FontFamilyNumbering() { Val = 2 });
+ fontTitle.Append(new FontScheme() { Val = FontSchemeValues.Minor });
+
+ //добавление созданных шрифтов
+ fonts.Append(fontUsual);
+ fonts.Append(fontTitle);
+
+ //создание заливки
+ var fills = new Fills() { Count = 2U };
+
+ var fill1 = new Fill();
+ fill1.Append(new PatternFill()
+ {
+ PatternType = PatternValues.None
+ });
+
+ var fill2 = new Fill();
+ fill2.Append(new PatternFill()
+ {
+ PatternType = PatternValues.Gray125
+ });
+
+ fills.Append(fill1);
+ fills.Append(fill2);
+
+ //стиль границ ячейки - незакрашенный (для заголовка) и закрашенный
+ var borders = new Borders() { Count = 2U };
+
+ var borderNoBorder = new Border();
+ borderNoBorder.Append(new LeftBorder());
+ borderNoBorder.Append(new RightBorder());
+ borderNoBorder.Append(new TopBorder());
+ borderNoBorder.Append(new BottomBorder());
+ borderNoBorder.Append(new DiagonalBorder());
+
+ var borderThin = new Border();
+
+ var leftBorder = new LeftBorder() { Style = BorderStyleValues.Thin };
+ leftBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
+
+ var rightBorder = new RightBorder()
+ {
+ Style = BorderStyleValues.Thin
+ };
+ rightBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
+
+ var topBorder = new TopBorder() { Style = BorderStyleValues.Thin };
+ topBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
+
+ var bottomBorder = new BottomBorder()
+ {
+ Style = BorderStyleValues.Thin
+ };
+ bottomBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
+
+ borderThin.Append(leftBorder);
+ borderThin.Append(rightBorder);
+ borderThin.Append(topBorder);
+ borderThin.Append(bottomBorder);
+ borderThin.Append(new DiagonalBorder());
+
+ borders.Append(borderNoBorder);
+ borders.Append(borderThin);
+
+ //формирование CellFormat из комбинаций шрифтов, заливок и т. д.
+ var cellStyleFormats = new CellStyleFormats() { Count = 1U };
+
+ var cellFormatStyle = new CellFormat()
+ {
+ NumberFormatId = 0U,
+ FontId = 0U,
+ FillId = 0U,
+ BorderId = 0U
+ };
+
+ cellStyleFormats.Append(cellFormatStyle);
+
+ var cellFormats = new CellFormats() { Count = 3U };
+
+ var cellFormatFont = new CellFormat()
+ {
+ NumberFormatId = 0U,
+ FontId = 0U,
+ FillId = 0U,
+ BorderId = 0U,
+ FormatId = 0U,
+ ApplyFont = true
+ };
+
+ var cellFormatFontAndBorder = new CellFormat()
+ {
+ NumberFormatId = 0U,
+ FontId = 0U,
+ FillId = 0U,
+ BorderId = 1U,
+ FormatId = 0U,
+ ApplyFont = true,
+ ApplyBorder = true
+ };
+
+ var cellFormatTitle = new CellFormat()
+ {
+ NumberFormatId = 0U,
+ FontId = 1U,
+ FillId = 0U,
+ BorderId = 0U,
+ FormatId = 0U,
+ Alignment = new Alignment()
+ {
+ Vertical = VerticalAlignmentValues.Center,
+ WrapText = true,
+ Horizontal = HorizontalAlignmentValues.Center
+ },
+ ApplyFont = true
+ };
+
+ //по итогу создали 3 стиля
+ cellFormats.Append(cellFormatFont);
+ cellFormats.Append(cellFormatFontAndBorder);
+ cellFormats.Append(cellFormatTitle);
+
+ var cellStyles = new CellStyles() { Count = 1U };
+
+ cellStyles.Append(new CellStyle()
+ {
+ Name = "Normal",
+ FormatId = 0U,
+ BuiltinId = 0U
+ });
+
+ var differentialFormats = new DocumentFormat.OpenXml.Office2013.Excel.DifferentialFormats() { Count = 0U };
+
+ var tableStyles = new TableStyles()
+ {
+ Count = 0U,
+ DefaultTableStyle = "TableStyleMedium2",
+ DefaultPivotStyle = "PivotStyleLight16"
+ };
+
+ var stylesheetExtensionList = new StylesheetExtensionList();
+ var stylesheetExtension1 = new StylesheetExtension()
+ {
+ Uri = "{EB79DEF2-80B8-43e5-95BD-54CBDDF9020C}"
+ };
+
+ stylesheetExtension1.AddNamespaceDeclaration("x14", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main");
+ stylesheetExtension1.Append(new SlicerStyles()
+ {
+ DefaultSlicerStyle = "SlicerStyleLight1"
+ });
+
+ var stylesheetExtension2 = new StylesheetExtension()
+ {
+ Uri = "{9260A510-F301-46a8-8635-F512D64BE5F5}"
+ };
+
+ stylesheetExtension2.AddNamespaceDeclaration("x15", "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main");
+
+ stylesheetExtension2.Append(new TimelineStyles()
+ {
+ DefaultTimelineStyle = "TimeSlicerStyleLight1"
+ });
+
+ stylesheetExtensionList.Append(stylesheetExtension1);
+ stylesheetExtensionList.Append(stylesheetExtension2);
+
+ sp.Stylesheet.Append(fonts);
+ sp.Stylesheet.Append(fills);
+ sp.Stylesheet.Append(borders);
+ sp.Stylesheet.Append(cellStyleFormats);
+ sp.Stylesheet.Append(cellFormats);
+ sp.Stylesheet.Append(cellStyles);
+ sp.Stylesheet.Append(differentialFormats);
+ sp.Stylesheet.Append(tableStyles);
+ sp.Stylesheet.Append(stylesheetExtensionList);
+ }
+
+ //Получение номера стиля (одного из 3-х нами созданных) из типа
+ private static uint GetStyleValue(ExcelStyleInfoType styleInfo)
+ {
+ return styleInfo switch
+ {
+ ExcelStyleInfoType.Title => 2U,
+ ExcelStyleInfoType.TextWithBroder => 1U,
+ ExcelStyleInfoType.Text => 0U,
+ _ => 0U,
+ };
+ }
+
+ protected override void CreateExcel(ExcelInfo info)
+ {
+ //создаём документ Excel
+ _spreadsheetDocument = SpreadsheetDocument.Create(info.FileName, SpreadsheetDocumentType.Workbook);
+
+ // Создаем книгу (в ней хранятся листы)
+ var workbookpart = _spreadsheetDocument.AddWorkbookPart();
+
+ workbookpart.Workbook = new Workbook();
+
+ CreateStyles(workbookpart);
+
+ // Получаем/создаем хранилище текстов для книги
+ _shareStringPart = _spreadsheetDocument.WorkbookPart!.GetPartsOfType().Any()
+ ? _spreadsheetDocument.WorkbookPart.GetPartsOfType().First()
+ : _spreadsheetDocument.WorkbookPart.AddNewPart();
+
+ // Создаем SharedStringTable, если его нет
+ if (_shareStringPart.SharedStringTable == null)
+ {
+ _shareStringPart.SharedStringTable = new SharedStringTable();
+ }
+
+ // Создаем лист в книгу
+ var worksheetPart = workbookpart.AddNewPart();
+ worksheetPart.Worksheet = new Worksheet(new SheetData());
+
+ // Добавляем лист в книгу
+ var sheets = _spreadsheetDocument.WorkbookPart.Workbook.AppendChild(new Sheets());
+
+ var sheet = new Sheet()
+ {
+ Id = _spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart),
+ SheetId = 1,
+ Name = "Лист"
+ };
+
+ sheets.Append(sheet);
+
+ _worksheet = worksheetPart.Worksheet;
+ }
+
+ //метод вставки в лист книги
+ protected override void InsertCellInWorksheet(ExcelCellParameters excelParams)
+ {
+ if (_worksheet == null || _shareStringPart == null)
+ {
+ return;
+ }
+
+ var sheetData = _worksheet.GetFirstChild();
+
+ if (sheetData == null)
+ {
+ return;
+ }
+
+ // Ищем строку, либо добавляем ее
+ Row row;
+
+ if (sheetData.Elements().Where(r => r.RowIndex! == excelParams.RowIndex).Any())
+ {
+ row = sheetData.Elements().Where(r => r.RowIndex! == excelParams.RowIndex).First();
+ }
+ else
+ {
+ row = new Row() { RowIndex = excelParams.RowIndex };
+ sheetData.Append(row);
+ }
+
+ // Ищем нужную ячейку
+ Cell cell;
+
+ if (row.Elements().Where(c => c.CellReference!.Value == excelParams.CellReference).Any())
+ {
+ cell = row.Elements().Where(c => c.CellReference!.Value == excelParams.CellReference).First();
+ }
+ else
+ {
+ // Все ячейки должны быть последовательно друг за другом расположены
+ // нужно определить, после какой вставлять
+ Cell? refCell = null;
+
+ foreach (Cell rowCell in row.Elements())
+ {
+ if (string.Compare(rowCell.CellReference!.Value, excelParams.CellReference, true) > 0)
+ {
+ refCell = rowCell;
+ break;
+ }
+ }
+
+ var newCell = new Cell()
+ {
+ CellReference = excelParams.CellReference
+ };
+
+ row.InsertBefore(newCell, refCell);
+ cell = newCell;
+ }
+
+ // вставляем новый текст
+ _shareStringPart.SharedStringTable.AppendChild(new SharedStringItem(new Text(excelParams.Text)));
+ _shareStringPart.SharedStringTable.Save();
+
+ cell.CellValue = new CellValue((_shareStringPart.SharedStringTable.Elements().Count() - 1).ToString());
+ cell.DataType = new EnumValue(CellValues.SharedString);
+ cell.StyleIndex = GetStyleValue(excelParams.StyleInfo);
+ }
+
+ //метод объединения ячеек
+ protected override void MergeCells(ExcelMergeParameters excelParams)
+ {
+ if (_worksheet == null)
+ {
+ return;
+ }
+
+ MergeCells mergeCells;
+
+ if (_worksheet.Elements().Any())
+ {
+ mergeCells = _worksheet.Elements().First();
+ }
+ else
+ {
+ mergeCells = new MergeCells();
+
+ if (_worksheet.Elements().Any())
+ {
+ _worksheet.InsertAfter(mergeCells, _worksheet.Elements().First());
+ }
+ else
+ {
+ _worksheet.InsertAfter(mergeCells, _worksheet.Elements().First());
+ }
+ }
+
+ var mergeCell = new MergeCell()
+ {
+ Reference = new StringValue(excelParams.Merge)
+ };
+
+ mergeCells.Append(mergeCell);
+ }
+
+ protected override void SaveExcel(ExcelInfo info)
+ {
+ if (_spreadsheetDocument == null)
+ {
+ return;
+ }
+
+ _spreadsheetDocument.WorkbookPart!.Workbook.Save();
+ _spreadsheetDocument.Close();
+ }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToPdf.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToPdf.cs
new file mode 100644
index 0000000..cf349c1
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToPdf.cs
@@ -0,0 +1,131 @@
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using MigraDoc.DocumentObjectModel;
+using MigraDoc.DocumentObjectModel.Tables;
+using MigraDoc.Rendering;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.Implements
+{
+ //реализация астрактного класса создания pdf документа
+ public class SaveToPdf : AbstractSaveToPdfCashier
+ {
+ private Document? _document;
+
+ private Section? _section;
+
+ private Table? _table;
+
+ //преобразование необходимого типа выравнивания в соотвествующее выравнивание в MigraDoc
+ private static ParagraphAlignment GetParagraphAlignment(PdfParagraphAlignmentType type)
+ {
+ return type switch
+ {
+ PdfParagraphAlignmentType.Center => ParagraphAlignment.Center,
+ PdfParagraphAlignmentType.Left => ParagraphAlignment.Left,
+ PdfParagraphAlignmentType.Right => ParagraphAlignment.Right,
+ _ => ParagraphAlignment.Justify,
+ };
+ }
+
+ //Создание стилей для документа
+ private static void DefineStyles(Document document)
+ {
+ var style = document.Styles["Normal"];
+
+ style.Font.Name = "Times New Roman";
+ style.Font.Size = 14;
+
+ style = document.Styles.AddStyle("NormalTitle", "Normal");
+ style.Font.Bold = true;
+ }
+
+ protected override void CreatePdf(PdfInfo info)
+ {
+ //создаём документ
+ _document = new Document();
+
+ //передаём для него стили
+ DefineStyles(_document);
+
+ //получение первой секции документа
+ _section = _document.AddSection();
+ }
+
+ protected override void CreateParagraph(PdfParagraph pdfParagraph)
+ {
+ if (_section == null)
+ {
+ return;
+ }
+
+ var paragraph = _section.AddParagraph(pdfParagraph.Text);
+ paragraph.Format.SpaceAfter = "1cm";
+ paragraph.Format.Alignment = GetParagraphAlignment(pdfParagraph.ParagraphAlignment);
+ paragraph.Style = pdfParagraph.Style;
+ }
+
+ protected override void CreateTable(List columns)
+ {
+ if (_document == null)
+ {
+ return;
+ }
+
+ //добавляем таблицу в документ как последнюю секцию (?)
+ _table = _document.LastSection.AddTable();
+
+ foreach (var elem in columns)
+ {
+ _table.AddColumn(elem);
+ }
+ }
+
+ protected override void CreateRow(PdfRowParameters rowParameters)
+ {
+ if (_table == null)
+ {
+ return;
+ }
+
+ //добавление строки в таблицу
+ var row = _table.AddRow();
+
+ for (int i = 0; i < rowParameters.Texts.Count; ++i)
+ {
+ //ячейка добавляется добавлением параграфа
+ row.Cells[i].AddParagraph(rowParameters.Texts[i]);
+
+ if (!string.IsNullOrEmpty(rowParameters.Style))
+ {
+ row.Cells[i].Style = rowParameters.Style;
+ }
+
+ Unit borderWidth = 0.5;
+
+ row.Cells[i].Borders.Left.Width = borderWidth;
+ row.Cells[i].Borders.Right.Width = borderWidth;
+ row.Cells[i].Borders.Top.Width = borderWidth;
+ row.Cells[i].Borders.Bottom.Width = borderWidth;
+
+ row.Cells[i].Format.Alignment = GetParagraphAlignment(rowParameters.ParagraphAlignment);
+ row.Cells[i].VerticalAlignment = VerticalAlignment.Center;
+ }
+ }
+
+ protected override void SavePdf(PdfInfo info)
+ {
+ var renderer = new PdfDocumentRenderer(true)
+ {
+ Document = _document
+ };
+
+ renderer.RenderDocument();
+ renderer.PdfDocument.Save(info.FileName);
+ }
+ }
+}
diff --git a/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToWord.cs b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToWord.cs
new file mode 100644
index 0000000..bce0ce5
--- /dev/null
+++ b/BankYouBankrupt/BankYouBankruptBusinessLogic/OfficePackage/Implements/SaveToWord.cs
@@ -0,0 +1,155 @@
+
+using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
+using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
+using DocumentFormat.OpenXml;
+using DocumentFormat.OpenXml.Packaging;
+using DocumentFormat.OpenXml.Wordprocessing;
+
+namespace BankYouBankruptBusinessLogic.OfficePackage.Implements
+{
+ //реализация абстрактного класса сохранения в word
+ public class SaveToWord : AbstractSaveToWordCashier
+ {
+ private WordprocessingDocument? _wordDocument;
+
+ private Body? _docBody;
+
+ //Получение типа выравнивания
+ private static JustificationValues GetJustificationValues(WordJustificationType type)
+ {
+ //выравнивание слева будет в том случае, если передаётся неизвестный тип выравнивания
+ return type switch
+ {
+ WordJustificationType.Both => JustificationValues.Both,
+ WordJustificationType.Center => JustificationValues.Center,
+ _ => JustificationValues.Left,
+ };
+ }
+
+ //Настройки страницы
+ private static SectionProperties CreateSectionProperties()
+ {
+ var properties = new SectionProperties();
+
+ //прописываем портретную ориентацию
+ var pageSize = new PageSize
+ {
+ Orient = PageOrientationValues.Portrait
+ };
+
+ properties.AppendChild(pageSize);
+
+ return properties;
+ }
+
+ //Задание форматирования для абзаца
+ private static ParagraphProperties? CreateParagraphProperties(WordTextProperties? paragraphProperties)
+ {
+ if (paragraphProperties == null)
+ {
+ return null;
+ }
+
+ var properties = new ParagraphProperties();
+
+ //вытаскиваем выравнивание текста
+ properties.AppendChild(new Justification()
+ {
+ Val = GetJustificationValues(paragraphProperties.JustificationType)
+ });
+
+ properties.AppendChild(new SpacingBetweenLines
+ {
+ LineRule = LineSpacingRuleValues.Auto
+ });
+
+ properties.AppendChild(new Indentation());
+
+ var paragraphMarkRunProperties = new ParagraphMarkRunProperties();
+
+ if (!string.IsNullOrEmpty(paragraphProperties.Size))
+ {
+ paragraphMarkRunProperties.AppendChild(new FontSize
+ {
+ Val = paragraphProperties.Size
+ });
+ }
+
+ properties.AppendChild(paragraphMarkRunProperties);
+
+ return properties;
+ }
+
+ protected override void CreateWord(WordInfo info)
+ {
+ //создаём документ word
+ _wordDocument = WordprocessingDocument.Create(info.FileName, WordprocessingDocumentType.Document);
+
+ //вытаскиваем главную часть из вордовского документа
+ MainDocumentPart mainPart = _wordDocument.AddMainDocumentPart();
+
+ mainPart.Document = new Document();
+
+ //генерируем тело основной части документа
+ _docBody = mainPart.Document.AppendChild(new Body());
+ }
+
+ protected override void CreateParagraph(WordParagraph paragraph)
+ {
+ //проверка на то, был ли вызван WordprocessingDocument.Create (создался ли документ) и есть ли вообще параграф для вставки
+ if (_docBody == null || paragraph == null)
+ {
+ return;
+ }
+
+ var docParagraph = new Paragraph();
+
+ //добавляем свойства параграфа
+ docParagraph.AppendChild(CreateParagraphProperties(paragraph.TextProperties));
+
+ //вставляем блоки текста (их называют Run)
+ foreach (var run in paragraph.Texts)
+ {
+ var docRun = new Run();
+ var properties = new RunProperties();
+
+ //задание свойств текста - размер и жирность
+ properties.AppendChild(new FontSize { Val = run.Item2.Size });
+
+ if (run.Item2.Bold)
+ {
+ properties.AppendChild(new Bold());
+ }
+
+ docRun.AppendChild(properties);
+
+ docRun.AppendChild(new Text
+ {
+ Text = run.Item1,
+ Space = SpaceProcessingModeValues.Preserve
+ });
+
+ docParagraph.AppendChild(docRun);
+ }
+
+ _docBody.AppendChild(docParagraph);
+ }
+
+ //метод сохранения документа
+ protected override void SaveWord(WordInfo info)
+ {
+ if (_docBody == null || _wordDocument == null)
+ {
+ return;
+ }
+
+ //вставляем информацию по секциям (смотри, что является входным параметром)
+ _docBody.AppendChild(CreateSectionProperties());
+
+ //сохраняем документ
+ _wordDocument.MainDocumentPart!.Document.Save();
+
+ _wordDocument.Close();
+ }
+ }
+}
| | |