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,23 @@
using System;
using System.Collections.Generic;
namespace bdHerramientaCACOA.db;
public partial class municipios
{
public string CodigoMunicipio { get; set; } = null!;
public string? CodigoComarca { get; set; }
public string? CodigoProvincia { get; set; }
public string? Nombre { get; set; }
public string? DC { get; set; }
public virtual comarcas? CodigoComarcaNavigation { get; set; }
public virtual provincias? CodigoProvinciaNavigation { get; set; }
public virtual ICollection<codigospostales> codigospostales { get; set; } = new List<codigospostales>();
}