fix
This commit is contained in:
parent
045c795820
commit
f143710f19
@ -1,5 +1,5 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels.Pdf;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage
|
||||
{
|
||||
|
@ -1,11 +1,15 @@
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperEnums
|
||||
{
|
||||
//для задачи стиля вывода
|
||||
public enum ExcelStyleInfoType
|
||||
{
|
||||
//заголовок
|
||||
Title,
|
||||
|
||||
//текст
|
||||
Text,
|
||||
|
||||
//текст в рамке
|
||||
TextWithBroder
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel
|
||||
{
|
||||
public class ExcelCellParameters
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using FoodOrdersContracts.ViewModels;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel
|
||||
{
|
||||
public class ExcelInfo
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel
|
||||
{
|
||||
public class ExcelMergeParameters
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using FoodOrdersContracts.ViewModels;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Pdf
|
||||
{
|
||||
public class PdfInfo
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Pdf
|
||||
{
|
||||
public class PdfParagraph
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Pdf
|
||||
{
|
||||
public class PdfRowParameters
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using FoodOrdersContracts.ViewModels;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word
|
||||
{
|
||||
public class WordInfo
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word
|
||||
{
|
||||
public class WordParagraph
|
||||
{
|
@ -1,13 +1,15 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word
|
||||
{
|
||||
//информация по свойствам текста
|
||||
public class WordTextProperties
|
||||
{
|
||||
public string Size { get; set; } = string.Empty;
|
||||
|
||||
public bool Bold { get; set; }
|
||||
|
||||
//выравнивание текста
|
||||
public WordJustificationType JustificationType { get; set; }
|
||||
}
|
||||
}
|
@ -1,10 +1,10 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels;
|
||||
using DocumentFormat.OpenXml;
|
||||
using DocumentFormat.OpenXml.Office2010.Excel;
|
||||
using DocumentFormat.OpenXml.Office2013.Excel;
|
||||
using DocumentFormat.OpenXml.Packaging;
|
||||
using DocumentFormat.OpenXml.Spreadsheet;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.Implements
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels.Pdf;
|
||||
using MigraDoc.DocumentObjectModel;
|
||||
using MigraDoc.DocumentObjectModel.Tables;
|
||||
using MigraDoc.Rendering;
|
||||
|
@ -1,8 +1,8 @@
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperEnums;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels;
|
||||
using DocumentFormat.OpenXml;
|
||||
using DocumentFormat.OpenXml.Packaging;
|
||||
using DocumentFormat.OpenXml.Wordprocessing;
|
||||
using FoodOrdersBusinessLogic.OfficePackage.HelperModels.Word;
|
||||
|
||||
namespace FoodOrdersBusinessLogic.OfficePackage.Implements
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user