using System; using System.Collections.Generic; using PropertyChanged; namespace bdGrupoSanchoToro.db; [AddINotifyPropertyChangedInterface] public partial class almacenes { public int idAlmacen { get; set; } public string? Descripcion { get; set; } public string? Direccion { get; set; } public string? CodigoPostal { get; set; } public string? CodigoMunicipio { get; set; } public string? Telefono1 { get; set; } public string? Email { get; set; } public string? Encargados { get; set; } public int Tipo { get; set; } public DateOnly? FechaBaja { get; set; } public int idEmpresa { get; set; } public virtual municipios? CodigoMunicipioNavigation { get; set; } public virtual ICollection albaranesidAlmacenDestinoNavigation { get; set; } = new List(); public virtual ICollection albaranesidAlmacenOrigenNavigation { get; set; } = new List(); public virtual empresas idEmpresaNavigation { get; set; } = null!; public virtual ICollection stocks { get; set; } = new List(); }