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,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; }
}