Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

IFileEntityService.cs 589B

2 år sedan
12345678910111213141516171819
  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 UpdateNoteAsync(Guid id, UpdateFileNoteRequest fileDto);
  16. Task DeleteFileAsync(Guid id);
  17. }
  18. }