acabado la primera versión de agregar las estadisticas
This commit is contained in:
@@ -17,7 +17,7 @@ public partial class estadisticas
|
||||
|
||||
public double? costeHoraDespachoProf { get; set; }
|
||||
|
||||
public int? totalFases { get; set; }
|
||||
public double? totalFases { get; set; }
|
||||
|
||||
public double? horasTPEDocumentacion { get; set; }
|
||||
|
||||
@@ -25,7 +25,7 @@ public partial class estadisticas
|
||||
|
||||
public double? horasTPE { get; set; }
|
||||
|
||||
public int? porcentajeExternalizacion { get; set; }
|
||||
public double? porcentajeExternalizacion { get; set; }
|
||||
|
||||
public double? plazoPresentacion { get; set; }
|
||||
|
||||
@@ -33,9 +33,9 @@ public partial class estadisticas
|
||||
|
||||
public double? totalOtrosTrabajos { get; set; }
|
||||
|
||||
public int? porcentajeBeneficio { get; set; }
|
||||
public double? porcentajeBeneficio { get; set; }
|
||||
|
||||
public int? numeroTrabajadores { get; set; }
|
||||
public double? numeroTrabajadores { get; set; }
|
||||
|
||||
public virtual simulaciones? idSimulacionNavigation { get; set; }
|
||||
}
|
||||
|
||||
@@ -166,10 +166,6 @@ public partial class herramientascacoaContext : DbContext
|
||||
|
||||
entity.Property(e => e.idEstadistica).HasColumnType("int(11)");
|
||||
entity.Property(e => e.idSimulacion).HasColumnType("int(11)");
|
||||
entity.Property(e => e.numeroTrabajadores).HasColumnType("int(11)");
|
||||
entity.Property(e => e.porcentajeBeneficio).HasColumnType("int(11)");
|
||||
entity.Property(e => e.porcentajeExternalizacion).HasColumnType("int(11)");
|
||||
entity.Property(e => e.totalFases).HasColumnType("int(11)");
|
||||
|
||||
entity.HasOne(d => d.idSimulacionNavigation).WithMany(p => p.estadisticas)
|
||||
.HasForeignKey(d => d.idSimulacion)
|
||||
|
||||
Reference in New Issue
Block a user