using Application.Classes; using Application.DataTransferObjects.ExcelImport; namespace Application.Interfaces; public interface IExcelService { Task> ImportPlayersFromExcelAsync(ExcelImportRequest excelImportRequest, string createdBy, CancellationToken cancellationToken); }