- 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

@ -1,4 +1,5 @@
using StandManager.Domain.Entita.Base;
using System.ComponentModel.DataAnnotations.Schema;
namespace StandManager.Domain.Entita;
@ -6,4 +7,9 @@ public class ProvinciaIstat : EntitaBase
{
public string Sigla { get; set; }
public string Provincia { get; set; }
public bool CapoareaDaVerificare { get; set; }
[InverseProperty(nameof(Utente.ProvinciaIstat))]
public List<Utente> UtentiList { get; set; }
}