using Microsoft.AspNetCore.Http; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IFileService { Task GetCV(string fileName); Task UploadCV(string fileName,IFormFile file); Task> GetAll(); } }