Files
JWLMerge/JWLMerge.ExcelServices/IExcelService.cs
2021-05-24 12:24:36 +01:00

15 lines
345 B
C#

using System.Collections.Generic;
using JWLMerge.ExcelServices.Models;
namespace JWLMerge.ExcelServices
{
public interface IExcelService
{
int AppendToBibleNotesFile(
string excelFilePath,
IReadOnlyCollection<BibleNote>? notes,
int startRow,
string backupFilePath);
}
}