mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
9 lines
312 B
C#
9 lines
312 B
C#
using Application.Classes;
|
|
using Application.DataTransferObjects.ExcelImport;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface IExcelService
|
|
{
|
|
Task<Result<ExcelImportResponse>> ImportPlayersFromExcelAsync(ExcelImportRequest excelImportRequest, string createdBy, CancellationToken cancellationToken);
|
|
} |