From 5546ab58e72d029c721b5b14f1c1a1b83ba62a2b Mon Sep 17 00:00:00 2001 From: "ns.potapov" Date: Sun, 26 May 2024 11:48:19 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BC=D0=B5=D0=BD=D1=8F=D0=BB=20?= =?UTF-8?q?=D0=BE=D0=B1=D0=BB=D0=B0=D1=81=D1=82=D0=B8=20=D0=B2=D0=B8=D0=B4?= =?UTF-8?q?=D0=B8=D0=BC=D0=BE=D1=81=D1=82=D0=B8=20=D1=83=20=D0=BA=D0=BB?= =?UTF-8?q?=D0=B0=D1=81=D1=81=D0=BE=D0=B2=20OfficePackage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../OfficePackage/HelperEnums/ExcelStyleInfoType.cs | 2 +- .../OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs | 2 +- .../OfficePackage/HelperEnums/WordJustificationType.cs | 2 +- .../OfficePackage/HelperModels/Excel/ExcelCellParameters.cs | 4 ++-- .../OfficePackage/HelperModels/Excel/ExcelMergeParameters.cs | 2 +- .../OfficePackage/HelperModels/PDF/PdfParagraph.cs | 4 ++-- .../OfficePackage/HelperModels/PDF/PdfRowParameters.cs | 4 ++-- .../OfficePackage/HelperModels/Word/WordParagraph.cs | 2 +- .../OfficePackage/HelperModels/Word/WordTextProperties.cs | 4 ++-- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs index b246b11..46f7c0c 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs @@ -1,4 +1,4 @@ -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums +namespace PolyclinicBusinessLogic.OfficePackage.HelperEnums { public enum ExcelStyleInfoType { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs index 9a16984..2da5db3 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs @@ -1,4 +1,4 @@ -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums +namespace PolyclinicBusinessLogic.OfficePackage.HelperEnums { public enum PdfParagraphAlignmentType { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs index 2a0a485..5efdf5f 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs @@ -1,4 +1,4 @@ -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums +namespace PolyclinicBusinessLogic.OfficePackage.HelperEnums { public enum WordJustificationType { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelCellParameters.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelCellParameters.cs index 179f2e4..ccbc4e5 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelCellParameters.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelCellParameters.cs @@ -1,6 +1,6 @@ -using PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums; +using PolyclinicBusinessLogic.OfficePackage.HelperEnums; -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperModels.Excel +namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.Excel { public class ExcelCellParameters { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelMergeParameters.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelMergeParameters.cs index 8d39d91..2d51fa5 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelMergeParameters.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Excel/ExcelMergeParameters.cs @@ -1,4 +1,4 @@ -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperModels.Excel +namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.Excel { public class ExcelMergeParameters { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfParagraph.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfParagraph.cs index 333d2b9..de17a96 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfParagraph.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfParagraph.cs @@ -1,6 +1,6 @@ -using PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums; +using PolyclinicBusinessLogic.OfficePackage.HelperEnums; -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperModels.PDF +namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.PDF { public class PdfParagraph { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfRowParameters.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfRowParameters.cs index bc137ec..b956d4e 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfRowParameters.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/PDF/PdfRowParameters.cs @@ -1,6 +1,6 @@ -using PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums; +using PolyclinicBusinessLogic.OfficePackage.HelperEnums; -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperModels.PDF +namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.PDF { public class PdfRowParameters { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordParagraph.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordParagraph.cs index c9bd9bd..1476335 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordParagraph.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordParagraph.cs @@ -1,4 +1,4 @@ -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperModels.Word +namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.Word { public class WordParagraph { diff --git a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordTextProperties.cs b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordTextProperties.cs index 8eac0a7..5e14f86 100644 --- a/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordTextProperties.cs +++ b/Polyclinic/PolyclinicBusinessLogic/OfficePackage/HelperModels/Word/WordTextProperties.cs @@ -1,6 +1,6 @@ -using PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums; +using PolyclinicBusinessLogic.OfficePackage.HelperEnums; -namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperModels.Word +namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.Word { public class WordTextProperties {