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 + } +}