Primera versión estable compatible con linux de WSAsegasa

This commit is contained in:
2025-11-20 16:34:14 +01:00
parent 68ab86be9e
commit 574a139e78
209 changed files with 19093 additions and 16 deletions

55
bdAsegasa/db/cuentas.cs Normal file
View File

@@ -0,0 +1,55 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class cuentas
{
public int idCuenta { get; set; }
public string? Mote { get; set; }
public string Denominacion { get; set; } = null!;
public double PresupuestoEnero { get; set; }
public double PresupuestoFebrero { get; set; }
public double PresupuestoMarzo { get; set; }
public double PresupuestoAbril { get; set; }
public double PresupuestoMayo { get; set; }
public double PresupuestoJunio { get; set; }
public double PresupuestoJulio { get; set; }
public double PresupuestoAgosto { get; set; }
public double PresupuestoSeptiembre { get; set; }
public double PresupuestoOctubre { get; set; }
public double PresupuestoNoviembre { get; set; }
public double PresupuestoDiciembre { get; set; }
public string? Observaciones { get; set; }
public string NumeroCuenta { get; set; } = null!;
public int idEjercicio { get; set; }
public int? idEmpresaAmortizacion { get; set; }
public bool EsCuentaFinal { get; set; }
public virtual ICollection<apuntes> apuntes { get; set; } = new List<apuntes>();
public virtual ejercicioscontables idEjercicioNavigation { get; set; } = null!;
public virtual enumeraciones? idEmpresaAmortizacionNavigation { get; set; }
}