diff --git a/.idea/.idea.StandManager/.idea/data_source_mapping.xml b/.idea/.idea.StandManager/.idea/data_source_mapping.xml
index 1ac53ef..253d1ec 100644
--- a/.idea/.idea.StandManager/.idea/data_source_mapping.xml
+++ b/.idea/.idea.StandManager/.idea/data_source_mapping.xml
@@ -3,6 +3,8 @@
+
+
\ No newline at end of file
diff --git a/StandManager.Domain/Entita/Destinazione.cs b/StandManager.Domain/Entita/Destinazione.cs
index e946002..1bdca2a 100644
--- a/StandManager.Domain/Entita/Destinazione.cs
+++ b/StandManager.Domain/Entita/Destinazione.cs
@@ -5,6 +5,10 @@ namespace StandManager.Domain.Entita;
public class Destinazione : EntitaBase
{
+ public Destinazione()
+ {
+ DataCreazione = DateTime.Now;
+ }
[ForeignKey(nameof(Cliente))]
public Guid? ClienteId { get; set; }
public Cliente Cliente { get; set; }
diff --git a/StandManager/Components/Pages/Component_Registrazione.razor b/StandManager/Components/Pages/Component_Registrazione.razor
index 84ee995..495b381 100644
--- a/StandManager/Components/Pages/Component_Registrazione.razor
+++ b/StandManager/Components/Pages/Component_Registrazione.razor
@@ -131,7 +131,8 @@
@@ -151,6 +152,8 @@
[Parameter] public InvitoEventoViewModel invito { get; set; }
[Parameter] public bool hasCliente { get; set; }
+ [Parameter] public Func