您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }