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