From 5a05bebae3915f576743fd148e91ef323dfc8ed3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=91=D0=B0=D0=BA=D0=B0?= =?UTF-8?q?=D0=BB=D1=8C=D1=81=D0=BA=D0=B0=D1=8F?= Date: Thu, 23 May 2024 18:38:14 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=D0=B0=20=D0=BF=D0=B5=D1=80=D0=B5=D1=87=D0=B8=D1=81=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D0=B2=D0=BE=D1=80?= =?UTF-8?q?=D0=B4=D0=B0=20=D0=B8=20=D0=BF=D0=B4=D1=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../HelperEnums/PdfParagraphAlignmentType.cs | 15 +++++++++++++++ .../HelperEnums/WordJustificationType.cs | 14 ++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs create mode 100644 Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/WordJustificationType.cs diff --git a/Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs b/Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs new file mode 100644 index 0000000..b1ef104 --- /dev/null +++ b/Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums +{ + public enum PdfParagraphAlignmentType + { + Center, + Left, + Rigth + } +} diff --git a/Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/WordJustificationType.cs b/Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/WordJustificationType.cs new file mode 100644 index 0000000..09b719b --- /dev/null +++ b/Polyclinic/PolyclinicBusinessLogic/BusinessLogics/OfficePackage/HelperEnums/WordJustificationType.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PolyclinicBusinessLogic.BusinessLogics.OfficePackage.HelperEnums +{ + public enum WordJustificationType + { + Center, + Both + } +}