diff --git a/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Empresas.cs b/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Empresas.cs
index 8cfa65e..6d1c282 100644
--- a/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Empresas.cs
+++ b/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Empresas.cs
@@ -1,9 +1,9 @@
//------------------------------------------------------------------------------
//
-// 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.
-// Los cambios manuales en este archivo se sobrescribirán si se regenera el código.
+// 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.
//
//------------------------------------------------------------------------------
@@ -16,6 +16,7 @@ namespace Exferia_EntityFramework
{
public GEN_Empresas()
{
+ this.GEN_Firmas_Electronicas = new HashSet();
this.CRM_ClientesPotenciales = new HashSet();
this.CRM_Terminales = new HashSet();
this.CTA_AmortizacionesCabecera = new HashSet();
@@ -193,6 +194,7 @@ namespace Exferia_EntityFramework
public string NRBE { get; set; }
public Nullable permiteCobrarAlbaran { get; set; }
+ public virtual ICollection GEN_Firmas_Electronicas { get; set; }
public virtual ICollection CRM_ClientesPotenciales { get; set; }
public virtual ICollection CRM_Terminales { get; set; }
public virtual ICollection CTA_AmortizacionesCabecera { get; set; }
diff --git a/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Firmas_Electronicas.cs b/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Firmas_Electronicas.cs
new file mode 100644
index 0000000..59cebd5
--- /dev/null
+++ b/Exferia_EntityFramework/Exferia_EntityFramework/GEN_Firmas_Electronicas.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// 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.
+//
+//------------------------------------------------------------------------------
+
+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 fecha_fin { get; set; }
+ public string text_perm { get; set; }
+
+ public virtual GEN_Empresas GEN_Empresas { get; set; }
+ }
+}