2025-08-01 14:38:15 -03:00
|
|
|
using GestionIntegral.Api.Dtos.Suscripciones;
|
|
|
|
|
|
|
|
|
|
namespace GestionIntegral.Api.Services.Suscripciones
|
|
|
|
|
{
|
|
|
|
|
public interface IAjusteService
|
|
|
|
|
{
|
2025-08-08 09:48:15 -03:00
|
|
|
Task<IEnumerable<AjusteDto>> ObtenerAjustesPorSuscriptor(int idSuscriptor, DateTime? fechaDesde, DateTime? fechaHasta);
|
2025-08-01 14:38:15 -03:00
|
|
|
Task<(AjusteDto? Ajuste, string? Error)> CrearAjusteManual(CreateAjusteDto createDto, int idUsuario);
|
2025-08-08 09:48:15 -03:00
|
|
|
Task<(bool Exito, string? Error)> ActualizarAjuste(int idAjuste, UpdateAjusteDto updateDto);
|
2025-08-01 14:38:15 -03:00
|
|
|
Task<(bool Exito, string? Error)> AnularAjuste(int idAjuste, int idUsuario);
|
|
|
|
|
}
|
|
|
|
|
}
|