9 lines
302 B
C#
9 lines
302 B
C#
using AMREZ.EOP.Contracts.DTOs.ImportData.Location;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.UseCases.ImportData.Location;
|
|
|
|
public interface ILocationImportUseCase
|
|
{
|
|
Task<LocationImportResultDto> ExecuteAsync(IFormFile file, CancellationToken ct = default);
|
|
} |