104 lines
2.3 KiB
C#
104 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class vf_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 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; }
|
|
|
|
public double TotalDebe { get; set; }
|
|
|
|
public double TotalHaber { get; set; }
|
|
|
|
public string? Ejercicio { get; set; }
|
|
}
|