using System.IO; using AsbCloudApp.Data; using Microsoft.AspNetCore.Mvc; namespace AsbCloudWebApi.Controllers.Interfaces; public interface IHasExcelParser where TDto : class, IId { ActionResult> Parse(Stream file); }