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