using Diligent.WebAPI.Contracts.DTOs.Document; using Microsoft.AspNetCore.Http; namespace Diligent.WebAPI.Business.Services.Interfaces { public interface IDocumentService { Task> GetAllDocuments(); Task> GetDocumentsByText(string text); Task UploadDocument(IFormFile file); } }