using Microsoft.AspNetCore.Http; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IImportService { Task<List<ApplicantImportDto>> Import(IFormFile fileData); } }