20 lines
479 B
C#
20 lines
479 B
C#
using DocumentFormat.OpenXml.Packaging;
|
|
using DocumentFormat.OpenXml.Wordprocessing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankBusinessLogic.OfficePackage.Implements
|
|
{
|
|
// Реализация создания Word-документа от абстрактного класса
|
|
public class SaveToWord
|
|
{
|
|
private WordprocessingDocument? _wordDocument;
|
|
|
|
private Body? _docBody;
|
|
|
|
}
|
|
}
|