Import clienti

This commit is contained in:
2025-12-15 16:42:01 +01:00
parent 664cee9656
commit a82e8b2263
12 changed files with 2390 additions and 37 deletions

View File

@ -112,6 +112,9 @@ namespace StandManager.Infrastructure.Migrations
b.Property<Guid?>("ClienteId")
.HasColumnType("uniqueidentifier");
b.Property<string>("CodiceFiscale")
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("DataCreazione")
.HasColumnType("datetime2");
@ -147,6 +150,9 @@ namespace StandManager.Infrastructure.Migrations
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("Rid")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.HasIndex("AgenteId");
@ -458,6 +464,9 @@ namespace StandManager.Infrastructure.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("uniqueidentifier");
b.Property<string>("CodiceAgente")
.HasColumnType("nvarchar(max)");
b.Property<string>("Cognome")
.IsRequired()
.HasColumnType("nvarchar(max)");