(firmas-e)Firmas electronicas
generacion de modelo entityframeworkfactura-e/firmas-e-modificacion-edmx
parent
d9a77d2672
commit
3cb6211105
|
|
@ -1,9 +1,9 @@
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// Este código se generó a partir de una plantilla.
|
// This code was generated from a template.
|
||||||
//
|
//
|
||||||
// Los cambios manuales en este archivo pueden causar un comportamiento inesperado de la aplicación.
|
// Manual changes to this file may cause unexpected behavior in your application.
|
||||||
// Los cambios manuales en este archivo se sobrescribirán si se regenera el código.
|
// Manual changes to this file will be overwritten if the code is regenerated.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
@ -16,6 +16,7 @@ namespace Exferia_EntityFramework
|
||||||
{
|
{
|
||||||
public GEN_Empresas()
|
public GEN_Empresas()
|
||||||
{
|
{
|
||||||
|
this.GEN_Firmas_Electronicas = new HashSet<GEN_Firmas_Electronicas>();
|
||||||
this.CRM_ClientesPotenciales = new HashSet<CRM_ClientesPotenciales>();
|
this.CRM_ClientesPotenciales = new HashSet<CRM_ClientesPotenciales>();
|
||||||
this.CRM_Terminales = new HashSet<CRM_Terminales>();
|
this.CRM_Terminales = new HashSet<CRM_Terminales>();
|
||||||
this.CTA_AmortizacionesCabecera = new HashSet<CTA_AmortizacionesCabecera>();
|
this.CTA_AmortizacionesCabecera = new HashSet<CTA_AmortizacionesCabecera>();
|
||||||
|
|
@ -193,6 +194,7 @@ namespace Exferia_EntityFramework
|
||||||
public string NRBE { get; set; }
|
public string NRBE { get; set; }
|
||||||
public Nullable<bool> permiteCobrarAlbaran { get; set; }
|
public Nullable<bool> permiteCobrarAlbaran { get; set; }
|
||||||
|
|
||||||
|
public virtual ICollection<GEN_Firmas_Electronicas> GEN_Firmas_Electronicas { get; set; }
|
||||||
public virtual ICollection<CRM_ClientesPotenciales> CRM_ClientesPotenciales { get; set; }
|
public virtual ICollection<CRM_ClientesPotenciales> CRM_ClientesPotenciales { get; set; }
|
||||||
public virtual ICollection<CRM_Terminales> CRM_Terminales { get; set; }
|
public virtual ICollection<CRM_Terminales> CRM_Terminales { get; set; }
|
||||||
public virtual ICollection<CTA_AmortizacionesCabecera> CTA_AmortizacionesCabecera { get; set; }
|
public virtual ICollection<CTA_AmortizacionesCabecera> CTA_AmortizacionesCabecera { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,26 @@
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated from a template.
|
||||||
|
//
|
||||||
|
// Manual changes to this file may cause unexpected behavior in your application.
|
||||||
|
// Manual changes to this file will be overwritten if the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace Exferia_EntityFramework
|
||||||
|
{
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public partial class GEN_Firmas_Electronicas
|
||||||
|
{
|
||||||
|
public long id { get; set; }
|
||||||
|
public string codigo { get; set; }
|
||||||
|
public string descripcion { get; set; }
|
||||||
|
public long idEmpresa { get; set; }
|
||||||
|
public Nullable<System.DateTime> fecha_fin { get; set; }
|
||||||
|
public string text_perm { get; set; }
|
||||||
|
|
||||||
|
public virtual GEN_Empresas GEN_Empresas { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue