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 255B

12345678910
  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<DocumentReadDTO> UploadDocument(IFormFile file);
  8. }
  9. }