Import clienti
This commit is contained in:
@ -10,12 +10,14 @@ public class Destinazione : EntitaBase
|
||||
public Cliente Cliente { get; set; }
|
||||
public string RagioneSociale { get; set; }
|
||||
public string PartitaIva { get; set; }
|
||||
public string? CodiceFiscale { 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? Rid { get; set; }
|
||||
|
||||
[ForeignKey(nameof(Agente))]
|
||||
public Guid? AgenteId { get; set; }
|
||||
|
||||
@ -15,6 +15,7 @@ public class Utente : EntitaBase
|
||||
public string Password { get; set; }
|
||||
public string Nome { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public string? CodiceAgente { get; set; }
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{Nome} {Cognome}";
|
||||
|
||||
Reference in New Issue
Block a user