namespace Zentral.Domain.Entities;
public class Cliente : BaseEntity
{
///
/// Codice cliente - generato automaticamente
///
public string Codice { get; set; } = string.Empty;
///
/// Codice alternativo (opzionale, inserito dall'utente)
///
public string? CodiceAlternativo { get; set; }
public string RagioneSociale { get; set; } = string.Empty;
public string? Indirizzo { get; set; }
public string? Cap { get; set; }
public string? Citta { get; set; }
public string? Provincia { get; set; }
public string? Telefono { get; set; }
public string? Email { get; set; }
public string? Pec { get; set; }
public string? CodiceFiscale { get; set; }
public string? PartitaIva { get; set; }
public string? CodiceDestinatario { get; set; }
public string? Note { get; set; }
public bool Attivo { get; set; } = true;
public ICollection Eventi { get; set; } = new List();
public ICollection SalesOrders { get; set; } = new List();
}