2024-04-30 22:39:45 +04:00
|
|
|
|
using DocumentFormat.OpenXml.Packaging;
|
|
|
|
|
using DocumentFormat.OpenXml.Wordprocessing;
|
|
|
|
|
using System;
|
2024-04-30 16:37:32 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankBusinessLogic.OfficePackage.Implements
|
|
|
|
|
{
|
2024-04-30 22:39:45 +04:00
|
|
|
|
// Реализация создания Word-документа от абстрактного класса
|
2024-04-30 16:37:32 +04:00
|
|
|
|
public class SaveToWord
|
|
|
|
|
{
|
2024-04-30 22:39:45 +04:00
|
|
|
|
private WordprocessingDocument? _wordDocument;
|
|
|
|
|
|
|
|
|
|
private Body? _docBody;
|
|
|
|
|
|
2024-04-30 16:37:32 +04:00
|
|
|
|
}
|
|
|
|
|
}
|