56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
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; }
|
|
}
|