2026-01-27 02

This commit is contained in:
2026-01-27 13:08:08 +01:00
parent 415b281213
commit 328dc37571
12 changed files with 345 additions and 95 deletions

View File

@@ -0,0 +1,79 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class v_apuntesextendidos
{
public int idApunte { get; set; }
public int idCuenta { get; set; }
public string? Concepto { get; set; }
public string? NumeroDocumento { get; set; }
public double Debe { get; set; }
public double Haber { get; set; }
public int idAsiento { get; set; }
public int? idConcepto { get; set; }
public DateTime? FechaPunteo { get; set; }
public int? TipoDocumento { get; set; }
public int? idConciliacion { get; set; }
public double? HaberEnero { get; set; }
public double? HaberFebrero { get; set; }
public double? HaberMarzo { get; set; }
public double? HaberAbril { get; set; }
public double? HaberMayo { get; set; }
public double? HaberJunio { get; set; }
public double? HaberJulio { get; set; }
public double? HaberAgosto { get; set; }
public double? HaberSeptiembre { get; set; }
public double? HaberOctubre { get; set; }
public double? HaberNoviembre { get; set; }
public double? HaberDiciembre { get; set; }
public double? DebeEnero { get; set; }
public double? DebeFebrero { get; set; }
public double? DebeMarzo { get; set; }
public double? DebeAbril { get; set; }
public double? DebeMayo { get; set; }
public double? DebeJunio { get; set; }
public double? DebeJulio { get; set; }
public double? DebeAgosto { get; set; }
public double? DebeSeptiembre { get; set; }
public double? DebeOctubre { get; set; }
public double? DebeNoviembre { get; set; }
public double? DebeDiciembre { get; set; }
}