- Lavoro su pagina IscrizioneEvento (Home.razor)
This commit is contained in:
@ -75,6 +75,9 @@ namespace StandManager.Infrastructure.Migrations
|
||||
b.Property<string>("Rid")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("StatoCliente")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("TipologiaCliente")
|
||||
.HasColumnType("int");
|
||||
|
||||
@ -263,9 +266,18 @@ namespace StandManager.Infrastructure.Migrations
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<string>("Cap")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<Guid?>("ClienteId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<string>("Cognome")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Comune")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<DateTime>("DataCreazione")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
@ -281,6 +293,12 @@ namespace StandManager.Infrastructure.Migrations
|
||||
b.Property<bool>("Eliminato")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<string>("Email")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("EsperienzaConDAC")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<Guid?>("EventoId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
@ -293,20 +311,38 @@ namespace StandManager.Infrastructure.Migrations
|
||||
b.Property<Guid?>("InvitoEventoId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<string>("Nome")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("Note")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("NumeroTelefono")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("Partecipanti")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Provincia")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("QrCodeCode")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("RagioneSociale")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int>("Ruolo")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<bool>("ScanCompleto")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<int>("Tipologia")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("ClienteId");
|
||||
@ -545,7 +581,7 @@ namespace StandManager.Infrastructure.Migrations
|
||||
.HasForeignKey("IdUtenteModifica");
|
||||
|
||||
b.HasOne("StandManager.Domain.Entita.InvitoEvento", "InvitoEvento")
|
||||
.WithMany()
|
||||
.WithMany("IscrizioniEvento")
|
||||
.HasForeignKey("InvitoEventoId");
|
||||
|
||||
b.Navigation("Cliente");
|
||||
@ -606,6 +642,11 @@ namespace StandManager.Infrastructure.Migrations
|
||||
{
|
||||
b.Navigation("Referenti");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("StandManager.Domain.Entita.InvitoEvento", b =>
|
||||
{
|
||||
b.Navigation("IscrizioniEvento");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user