forked from ddrilling/AsbCloudServer
11 lines
248 B
C#
11 lines
248 B
C#
using System.IO;
|
|
using AsbCloudApp.Data;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace AsbCloudWebApi.Controllers.Interfaces;
|
|
|
|
public interface IHasExcelParser<TDto>
|
|
where TDto : class, IId
|
|
{
|
|
ActionResult<ParserResultDto<TDto>> Parse(Stream file);
|
|
} |