2025-06-09 19:37:07 -03:00
|
|
|
using GestionIntegral.Api.Dtos.Auditoria;
|
2025-06-06 18:33:09 -03:00
|
|
|
using GestionIntegral.Api.Dtos.Contables;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace GestionIntegral.Api.Services.Contables
|
|
|
|
|
{
|
|
|
|
|
public interface ISaldoService
|
|
|
|
|
{
|
|
|
|
|
Task<IEnumerable<SaldoGestionDto>> ObtenerSaldosParaGestionAsync(string? destinoFilter, int? idDestinoFilter, int? idEmpresaFilter);
|
|
|
|
|
Task<(bool Exito, string? Error, SaldoGestionDto? SaldoActualizado)> RealizarAjusteManualSaldoAsync(AjusteSaldoRequestDto ajusteDto, int idUsuarioAjuste);
|
2025-06-09 19:37:07 -03:00
|
|
|
Task<IEnumerable<SaldoAjusteHistorialDto>> ObtenerHistorialAjustesAsync(
|
|
|
|
|
DateTime? fechaDesde, DateTime? fechaHasta,
|
|
|
|
|
int? idUsuarioModifico,
|
|
|
|
|
string? destino, int? idDestino, int? idEmpresa);
|
2025-06-06 18:33:09 -03:00
|
|
|
}
|
|
|
|
|
}
|