Exferia/Exferia_EntityFramework/Exferia_EntityFramework/CTG_GastosLineas.cs

39 lines
1.5 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// Este código se generó a partir de una plantilla.
//
// Los cambios manuales en este archivo pueden causar un comportamiento inesperado de la aplicación.
// Los cambios manuales en este archivo se sobrescribirán si se regenera el código.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Exferia_EntityFramework
{
using System;
using System.Collections.Generic;
public partial class CTG_GastosLineas
{
public CTG_GastosLineas()
{
this.CTG_Pagos = new HashSet<CTG_Pagos>();
}
public long id { get; set; }
public long idGastoCabecera { get; set; }
public Nullable<long> idConcepto { get; set; }
public System.DateTime fecha { get; set; }
public string codigo { get; set; }
public string descripcion { get; set; }
public Nullable<System.DateTime> fechaBorrado { get; set; }
public Nullable<decimal> importe_Euro { get; set; }
public Nullable<decimal> importe_Divisa { get; set; }
public Nullable<long> idMoneda { get; set; }
public virtual CTG_Conceptos CTG_Conceptos { get; set; }
public virtual CTG_GastosCabecera CTG_GastosCabecera { get; set; }
public virtual GEN_Monedas GEN_Monedas { get; set; }
public virtual ICollection<CTG_Pagos> CTG_Pagos { get; set; }
}
}