47 lines
2.2 KiB
C#
47 lines
2.2 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_Expedientes
|
|
{
|
|
public CTG_Expedientes()
|
|
{
|
|
this.CTG_Anticipos = new HashSet<CTG_Anticipos>();
|
|
this.CTG_Expedientes_Documentos = new HashSet<CTG_Expedientes_Documentos>();
|
|
this.CTG_GastosCabecera = new HashSet<CTG_GastosCabecera>();
|
|
this.CTG_OrdenComisionServiciosCabecera = new HashSet<CTG_OrdenComisionServiciosCabecera>();
|
|
this.CTG_Pagos = new HashSet<CTG_Pagos>();
|
|
this.COM_FacturasCabecera = new HashSet<COM_FacturasCabecera>();
|
|
}
|
|
|
|
public long id { get; set; }
|
|
public System.DateTime fecha { get; set; }
|
|
public long numero { get; set; }
|
|
public string descripcion { get; set; }
|
|
public Nullable<long> idEmpleado_Propuesto { get; set; }
|
|
public Nullable<long> idEmpleado_Autorizado { get; set; }
|
|
public string observaciones { get; set; }
|
|
public string estado { get; set; }
|
|
public Nullable<System.DateTime> fechaBorrado { get; set; }
|
|
|
|
public virtual ICollection<CTG_Anticipos> CTG_Anticipos { get; set; }
|
|
public virtual ICollection<CTG_Expedientes_Documentos> CTG_Expedientes_Documentos { get; set; }
|
|
public virtual ICollection<CTG_GastosCabecera> CTG_GastosCabecera { get; set; }
|
|
public virtual ICollection<CTG_OrdenComisionServiciosCabecera> CTG_OrdenComisionServiciosCabecera { get; set; }
|
|
public virtual ICollection<CTG_Pagos> CTG_Pagos { get; set; }
|
|
public virtual ICollection<COM_FacturasCabecera> COM_FacturasCabecera { get; set; }
|
|
public virtual MAE_Empleados MAE_Empleados { get; set; }
|
|
public virtual MAE_Empleados MAE_Empleados1 { get; set; }
|
|
}
|
|
}
|