Agregar archivos de proyecto.
This commit is contained in:
99
bdGrupoSanchoToro/db/v_albaranesextendidos.cs
Normal file
99
bdGrupoSanchoToro/db/v_albaranesextendidos.cs
Normal file
@@ -0,0 +1,99 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class v_albaranesextendidos
|
||||
{
|
||||
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? idEvento { get; set; }
|
||||
|
||||
public string? DescripcionEvento { get; set; }
|
||||
|
||||
public string? Telefono1Evento { get; set; }
|
||||
|
||||
public string? Telefono2Evento { get; set; }
|
||||
|
||||
public string? PersonaContactoEvento { get; set; }
|
||||
|
||||
public string? DireccionEvento { get; set; }
|
||||
|
||||
public string? CodigoPostalEvento { get; set; }
|
||||
|
||||
public string? CodigoMunicipioEvento { get; set; }
|
||||
|
||||
public string? ObservacionesEvento { get; set; }
|
||||
|
||||
public string? NIF { get; set; }
|
||||
|
||||
public string? RazonSocial { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? CodigoUsuario { get; set; }
|
||||
|
||||
public string? Usuario { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user