Continuación del módulo de reportes. -Backend

This commit is contained in:
2025-05-27 18:17:56 -03:00
parent 298bc0d094
commit cdd4d3e0f7
31 changed files with 1852 additions and 44 deletions

View File

@@ -0,0 +1,7 @@
public class BalanceCuentaDebCredDto // Para SP_BalanceCuentDistDebCred y SP_BalanceCuentDistDebCredEmpresa
{
public DateTime Fecha { get; set; }
public string? Referencia { get; set; }
public decimal Debe { get; set; }
public decimal Haber { get; set; }
}