From 512af9ed9849b119693846054e6da30a737a0c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=BD=D0=B0=20=D0=97=D0=B0=D0=B1=D1=80=D0=BE?= =?UTF-8?q?=D0=B4=D0=B8=D0=BD=D0=B0?= Date: Sun, 24 Mar 2024 10:35:31 +0400 Subject: [PATCH] HelperEnums --- .../OfficePackage/HelperEnums/ExcelStyleInfoType.cs | 9 +++++++++ .../HelperEnums/PdfParagraphAlignmentType.cs | 9 +++++++++ .../OfficePackage/HelperEnums/WordJustificationType.cs | 8 ++++++++ 3 files changed, 26 insertions(+) create mode 100644 Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs create mode 100644 Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs create mode 100644 Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs diff --git a/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs b/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs new file mode 100644 index 0000000..68c7b38 --- /dev/null +++ b/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs @@ -0,0 +1,9 @@ +namespace HotelBusinessLogic.OfficePackage.HelperEnums +{ + public enum ExcelStyleInfoType + { + Title, + Text, + TextWithBroder + } +} diff --git a/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs b/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs new file mode 100644 index 0000000..c6f9514 --- /dev/null +++ b/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/PdfParagraphAlignmentType.cs @@ -0,0 +1,9 @@ +namespace HotelBusinessLogic.OfficePackage.HelperEnums +{ + public enum PdfParagraphAlignmentType + { + Center, + Left, + Rigth + } +} diff --git a/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs b/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs new file mode 100644 index 0000000..09112de --- /dev/null +++ b/Hotel/HotelBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs @@ -0,0 +1,8 @@ +namespace HotelBusinessLogic.OfficePackage.HelperEnums +{ + public enum WordJustificationType + { + Center, + Both + } +}