Agregar archivos de proyecto.
This commit is contained in:
89
bdGrupoSanchoToro/db/albaranes.cs
Normal file
89
bdGrupoSanchoToro/db/albaranes.cs
Normal file
@@ -0,0 +1,89 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class albaranes
|
||||
{
|
||||
public int idAlbaran { get; set; }
|
||||
|
||||
public DateOnly Fecha { get; set; }
|
||||
|
||||
public int? idPresupuesto { get; set; }
|
||||
|
||||
public int? idValeTransporte { get; set; }
|
||||
|
||||
public int Tipo { get; set; }
|
||||
|
||||
public DateTime? FechaCarga { get; set; }
|
||||
|
||||
public string? LugarCarga { get; set; }
|
||||
|
||||
public string? Cargadores { get; set; }
|
||||
|
||||
public DateTime? FechaDescarga { get; set; }
|
||||
|
||||
public string? LugarDescarga { get; set; }
|
||||
|
||||
public string? Descargadores { get; set; }
|
||||
|
||||
public double Peso { get; set; }
|
||||
|
||||
public double Volumen { get; set; }
|
||||
|
||||
public double PorcentajeTransporte { get; set; }
|
||||
|
||||
public double CostoEstimadoTransporte { get; set; }
|
||||
|
||||
public int idUsuario { get; set; }
|
||||
|
||||
public int? idAlmacenOrigen { get; set; }
|
||||
|
||||
public string? CodigoPostalCarga { get; set; }
|
||||
|
||||
public string? CodigoMunicipioCarga { get; set; }
|
||||
|
||||
public string? CodigoPostalDescarga { get; set; }
|
||||
|
||||
public string? CodigoMunicipioDescarga { get; set; }
|
||||
|
||||
public string? Telefono1Carga { get; set; }
|
||||
|
||||
public string? Telefono2Carga { get; set; }
|
||||
|
||||
public string? EmailCarga { get; set; }
|
||||
|
||||
public string? Telefono1Descarga { get; set; }
|
||||
|
||||
public string? Telefono2Descarga { get; set; }
|
||||
|
||||
public string? EmailDescarga { get; set; }
|
||||
|
||||
public int? idAlmacenDestino { get; set; }
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public int NumeroBultos { get; set; }
|
||||
|
||||
public bool TransporteExterno { get; set; }
|
||||
|
||||
public DateOnly? FechaPrevistaFinSubalquiler { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioCargaNavigation { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioDescargaNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<detallesalbaranes> detallesalbaranes { get; set; } = new List<detallesalbaranes>();
|
||||
|
||||
public virtual almacenes? idAlmacenDestinoNavigation { get; set; }
|
||||
|
||||
public virtual almacenes? idAlmacenOrigenNavigation { get; set; }
|
||||
|
||||
public virtual entidades? idEntidadNavigation { get; set; }
|
||||
|
||||
public virtual presupuestos? idPresupuestoNavigation { get; set; }
|
||||
|
||||
public virtual usuarios idUsuarioNavigation { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user