13 lines
408 B
C#
13 lines
408 B
C#
|
|
using GestionIntegral.Api.Dtos.Reportes;
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Services.Reportes
|
||
|
|
{
|
||
|
|
public interface IReportesService
|
||
|
|
{
|
||
|
|
Task<(IEnumerable<ExistenciaPapelDto> Data, string? Error)> ObtenerExistenciaPapelAsync(DateTime fechaDesde, DateTime fechaHasta, int? idPlanta, bool consolidado);
|
||
|
|
// ...
|
||
|
|
}
|
||
|
|
}
|