Agregar archivos de proyecto.

This commit is contained in:
2026-01-23 12:45:41 +01:00
parent 5ed4e0bc46
commit c8d1044267
237 changed files with 34721 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdGrupoSanchoToro.db;
[AddINotifyPropertyChangedInterface]
public partial class municipios
{
public string CodigoMunicipio { get; set; } = null!;
public string? CodigoProvincia { get; set; }
public string? Nombre { get; set; }
public string? DC { get; set; }
public virtual provincias? CodigoProvinciaNavigation { get; set; }
public virtual ICollection<albaranes> albaranesCodigoMunicipioCargaNavigation { get; set; } = new List<albaranes>();
public virtual ICollection<albaranes> albaranesCodigoMunicipioDescargaNavigation { get; set; } = new List<albaranes>();
public virtual ICollection<almacenes> almacenes { get; set; } = new List<almacenes>();
public virtual ICollection<codigospostales> codigospostales { get; set; } = new List<codigospostales>();
public virtual ICollection<entidades> entidades { get; set; } = new List<entidades>();
public virtual ICollection<eventos> eventos { get; set; } = new List<eventos>();
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
}