Primera versión

This commit is contained in:
2025-07-25 12:56:07 +02:00
parent 850f9ce69f
commit cea1fdaa34
151 changed files with 26033 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
public partial class simulaciones
{
public int idSimulacion { get; set; }
public int idCodigo { get; set; }
public string Descripcion { get; set; } = null!;
public int idTipoSimulacion { get; set; }
public int idFicheroJSON { get; set; }
public DateTime FechaCreacion { get; set; }
public DateTime? FechaModificacion { get; set; }
public bool Ocultar { get; set; }
public double? CostesDirectos { get; set; }
public double? CostesIndirectos { get; set; }
public double? CostesVariables { get; set; }
public virtual usuarios idCodigoNavigation { get; set; } = null!;
public virtual ficheros idFicheroJSONNavigation { get; set; } = null!;
public virtual enumeraciones idTipoSimulacionNavigation { get; set; } = null!;
}