- Gestione Iscrizioni in management

- PartitaIVA in Component_Registrazione
- Flag "Da verificare" a DB
This commit is contained in:
2026-02-05 12:32:58 +01:00
parent 932299c98f
commit 4ddf71f465
17 changed files with 3253 additions and 48 deletions

View File

@ -25,6 +25,10 @@ public class Utente : EntitaBase
public Guid? CapoareaId { get; set; }
public Utente Capoarea { get; set; }
public bool IsCapoarea { get; set; }
[ForeignKey(nameof(ProvinciaIstat))]
public Guid? ProvinciaIstatId { get; set; }
public ProvinciaIstat ProvinciaIstat { get; set; }
public string Info => $"{Nome} {Cognome}";
public override string ToString()