agregado puntos de informacion
agregado tabla estadisticas
This commit is contained in:
41
bdHerramientaCACOA/db/estadisticas.cs
Normal file
41
bdHerramientaCACOA/db/estadisticas.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace bdHerramientaCACOA.db;
|
||||
|
||||
public partial class estadisticas
|
||||
{
|
||||
public int idEstadistica { get; set; }
|
||||
|
||||
public int? idSimulacion { get; set; }
|
||||
|
||||
public double? costeDirecto { get; set; }
|
||||
|
||||
public double? costeIndirecto { get; set; }
|
||||
|
||||
public double? costeVariable { get; set; }
|
||||
|
||||
public double? costeHoraDespachoProf { get; set; }
|
||||
|
||||
public int? totalFases { get; set; }
|
||||
|
||||
public double? horasTPEDocumentacion { get; set; }
|
||||
|
||||
public double? horasTPEDireccionObra { get; set; }
|
||||
|
||||
public double? horasTPE { get; set; }
|
||||
|
||||
public int? porcentajeExternalizacion { get; set; }
|
||||
|
||||
public double? plazoPresentacion { get; set; }
|
||||
|
||||
public double? costeProduccion { get; set; }
|
||||
|
||||
public double? totalOtrosTrabajos { get; set; }
|
||||
|
||||
public int? porcentajeBeneficio { get; set; }
|
||||
|
||||
public int? numeroTrabajadores { get; set; }
|
||||
|
||||
public virtual simulaciones? idSimulacionNavigation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user