This commit is contained in:
2026-01-26 09:25:29 +01:00
parent 36dc2ad664
commit d5570c50cb
7 changed files with 103 additions and 8 deletions

View File

@ -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; }