Agregar archivos de proyecto.
This commit is contained in:
47
bdGrupoSanchoToro/db/eventos.cs
Normal file
47
bdGrupoSanchoToro/db/eventos.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class eventos
|
||||
{
|
||||
public int idEvento { get; set; }
|
||||
|
||||
public string Descripcion { get; set; } = null!;
|
||||
|
||||
public int? idEntidad { get; set; }
|
||||
|
||||
public string? Telefono1 { get; set; }
|
||||
|
||||
public string? Telefono2 { get; set; }
|
||||
|
||||
public string? Email { get; set; }
|
||||
|
||||
public string? PersonaContacto { get; set; }
|
||||
|
||||
public DateOnly FechaAlta { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public int? idUsuario { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
|
||||
public string? CodigoPostal { get; set; }
|
||||
|
||||
public string? CodigoMunicipio { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual municipios? CodigoMunicipioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<facturas> facturas { get; set; } = new List<facturas>();
|
||||
|
||||
public virtual entidades? idEntidadNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioNavigation { get; set; }
|
||||
|
||||
public virtual ICollection<presupuestos> presupuestos { get; set; } = new List<presupuestos>();
|
||||
}
|
||||
Reference in New Issue
Block a user