22 lines
541 B
C#
22 lines
541 B
C#
using DocumentFormat.OpenXml.Packaging;
|
|
using DocumentFormat.OpenXml.Spreadsheet;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankBusinessLogic.OfficePackage.Implements
|
|
{
|
|
// Реализация создания Excel-документа от абстрактного класса
|
|
public class SaveToExcel
|
|
{
|
|
private SpreadsheetDocument? _spreadsheetDocument;
|
|
|
|
private SharedStringTablePart? _shareStringPart;
|
|
|
|
private Worksheet? _worksheet;
|
|
|
|
}
|
|
}
|