33 lines
772 B
C#
33 lines
772 B
C#
using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptBusinessLogic.OfficePackage.Implements
|
|
{
|
|
public class SaveToExcelCashier : AbstractSaveToExcelCashier
|
|
{
|
|
protected override void CreateExcel(ExcelInfo info)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void InsertCellInWorksheet(ExcelCellParameters excelParams)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void MergeCells(ExcelMergeParameters excelParams)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
protected override void SaveExcel(ExcelInfo info)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|