You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IFileEntityService.cs 519B

123456789101112131415161718
  1. using Diligent.WebAPI.Contracts.DTOs.File;
  2. using Diligent.WebAPI.Contracts.DTOs.Files;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Diligent.WebAPI.Business.Services.Interfaces
  9. {
  10. public interface IFileEntityService
  11. {
  12. Task UploadFileAsync(FileEntity file);
  13. Task<object> GetAllFiltered(FileFilter filters);
  14. Task<FileEntity> GetFileEntityByIdAsync(Guid id);
  15. Task DeleteFileAsync(Guid id);
  16. }
  17. }