Ricerca del cliente su PIva

This commit is contained in:
2025-12-16 11:04:11 +01:00
parent 6db8c7b938
commit 0fe46a52ce
15 changed files with 2060 additions and 238 deletions

View File

@ -237,6 +237,10 @@ namespace StandManager.Infrastructure.Migrations
b.Property<Guid?>("ClienteId")
.HasColumnType("uniqueidentifier");
b.Property<string>("CodiceFornito")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("DataCreazione")
.HasColumnType("datetime2");
@ -310,10 +314,7 @@ namespace StandManager.Infrastructure.Migrations
b.Property<Guid?>("EventoId")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("GiornoPresenzaAl")
.HasColumnType("datetime2");
b.Property<DateTime>("GiornoPresenzaDal")
b.Property<DateTime>("GiornoPresenza")
.HasColumnType("datetime2");
b.Property<Guid?>("IdUtenteCreazione")