GuidComune

This commit is contained in:
2025-12-22 17:01:43 +01:00
parent 8e4daf5f2e
commit 4c6c44ce6f
7 changed files with 1278 additions and 12 deletions

View File

@ -32,7 +32,9 @@ public class IscrizioneEvento : EntitaBase
[ForeignKey(nameof(Provincia))]
public Guid? ProvinciaId { get; set; }
public ProvinciaIstat Provincia { get; set; }
public string? Comune { get; set; }
[ForeignKey(nameof(Comune))]
public Guid? ComuneId { get; set; }
public ComuneIstat Comune { get; set; }
public string? Cap { get; set; }
public string? RagioneSociale { get; set; }
[ForeignKey(nameof(TipologiaCliente))]