agregado puntos de informacion

agregado tabla estadisticas
This commit is contained in:
2025-09-08 14:12:02 +02:00
parent 08f9560b11
commit c1cc98993f
22 changed files with 1115 additions and 17 deletions

View 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; }
}