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.

IDocumentService.cs 362B

123456789101112
  1. using Diligent.WebAPI.Contracts.DTOs.Document;
  2. using Microsoft.AspNetCore.Http;
  3. namespace Diligent.WebAPI.Business.Services.Interfaces
  4. {
  5. public interface IDocumentService
  6. {
  7. Task<List<DocumentReadDTO>> GetAllDocuments();
  8. Task<List<DocumentReadDTO>> GetDocumentsByText(string text);
  9. Task UploadDocument(IFormFile file);
  10. }
  11. }