11 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| public class BalanceCuentaDistDto // Para SP_BalanceCuentaDistEntradaSalida y SP_BalanceCuentaDistEntradaSalidaPorEmpresa
 | |
| {
 | |
|     public DateTime Fecha { get; set; }
 | |
|     public string Publicacion { get; set; } = string.Empty;
 | |
|     public string Distribuidor { get; set; } = string.Empty;
 | |
|     public int Cantidad { get; set; }
 | |
|     public string Remito { get; set; } = string.Empty; // En SP es int, pero en RDLC puede ser string
 | |
|     public string? Observacion { get; set; }
 | |
|     public decimal Debe { get; set; }
 | |
|     public decimal Haber { get; set; }
 | |
| } |