Utente/Eventi

This commit is contained in:
2025-12-04 09:53:39 +01:00
parent b4a6484909
commit 1a49be764c
40 changed files with 3579 additions and 101 deletions

View File

@ -6,16 +6,16 @@ namespace StandManager.Domain.Entita;
public class Destinazione : EntitaBase
{
[ForeignKey(nameof(Cliente))]
public Guid? Clienteid { get; set; }
public Guid? ClienteId { get; set; }
public Cliente Cliente { get; set; }
public string RagioneSociale { get; set; }
public string PartitaIva { get; set; }
public string Cap { get; set; }
public string Citta { get; set; }
public string Indirizzo { get; set; }
public string Email { get; set; }
public string EmailInvito { get; set; }
public string NumeroTelefono { get; set; }
public string? Cap { get; set; }
public string? Citta { get; set; }
public string? Indirizzo { get; set; }
public string? Email { get; set; }
public string? EmailInvito { get; set; }
public string? NumeroTelefono { get; set; }
[ForeignKey(nameof(Agente))]
public Guid? AgenteId { get; set; }