11 lines
430 B
C#
11 lines
430 B
C#
|
|
using GestionIntegral.Api.Dtos.Suscripciones;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Services.Suscripciones
|
||
|
|
{
|
||
|
|
public interface IAjusteService
|
||
|
|
{
|
||
|
|
Task<IEnumerable<AjusteDto>> ObtenerAjustesPorSuscriptor(int idSuscriptor);
|
||
|
|
Task<(AjusteDto? Ajuste, string? Error)> CrearAjusteManual(CreateAjusteDto createDto, int idUsuario);
|
||
|
|
Task<(bool Exito, string? Error)> AnularAjuste(int idAjuste, int idUsuario);
|
||
|
|
}
|
||
|
|
}
|