Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IFileEntityService.cs 422B

12345678910111213141516
  1. using Diligent.WebAPI.Contracts.DTOs.File;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Diligent.WebAPI.Business.Services.Interfaces
  8. {
  9. public interface IFileEntityService
  10. {
  11. Task<List<FileEntityResponse>> GetAllAsync();
  12. Task UploadPdfAsync(FileEntity file);
  13. Task<IEnumerable<FileEntity>> GetAll();
  14. }
  15. }