ComuneIstat
This commit is contained in:
@ -40,4 +40,4 @@ public enum ClienteStato
|
||||
Cliente = 0,
|
||||
[Description("Potenziale cliente")]
|
||||
Lead = 99
|
||||
}
|
||||
}
|
||||
13
StandManager.Domain/Entita/ComuneIstat.cs
Normal file
13
StandManager.Domain/Entita/ComuneIstat.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class ComuneIstat : EntitaBase
|
||||
{
|
||||
public string Istat { get; set; }
|
||||
public string Comune { get; set; }
|
||||
public string Regione { get; set; }
|
||||
public string Provincia { get; set; }
|
||||
public string Prefisso { get; set; }
|
||||
public string CodFisco { get; set; }
|
||||
}
|
||||
@ -24,6 +24,8 @@ public class Utente : EntitaBase
|
||||
[ForeignKey(nameof(Capoarea))]
|
||||
public Guid? CapoareaId { get; set; }
|
||||
public Utente Capoarea { get; set; }
|
||||
public bool IsCapoarea { get; set; }
|
||||
public string Info => $"{Nome} {Cognome}";
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user