mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-01-17 00:06:57 -05:00
15 lines
345 B
C#
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);
|
|
}
|
|
}
|