63 lines
1.8 KiB
C#
63 lines
1.8 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Xml.Linq;
|
|
|
|
namespace VirtualTask.Models
|
|
{
|
|
public class Anag
|
|
{
|
|
[Display(Name = "TIPO")]
|
|
/// <summary>tipo (chiave)</summary>
|
|
public string? antipcon { get; set; }
|
|
|
|
[Display(Name = "CODICE")]
|
|
/// <summary>codice (chiave)</summary>
|
|
public string? ancodice { get; set; }
|
|
|
|
[Display(Name = "AZIENDA")]
|
|
/// <summary>aziewnda (chiave)</summary>
|
|
public string? ancodazi { get; set; }
|
|
|
|
[Display(Name = "EMAIL")]
|
|
/// <summary>email</summary>
|
|
public string? an_email { get; set; }
|
|
|
|
[Display(Name = "CODICE FISCALE")]
|
|
/// <summary>codice fiscale</summary>
|
|
public string? ancodfis { get; set; }
|
|
|
|
[Display(Name = "PARTITA IVA")]
|
|
/// <summary>partita iva</summary>
|
|
public string? anpariva { get; set; }
|
|
|
|
[Display(Name = "INDIRIZZO")]
|
|
/// <summary>indirizzo</summary>
|
|
public string? anindiri { get; set; }
|
|
|
|
[Display(Name = "TELEFONO")]
|
|
/// <summary>telefono</summary>
|
|
public string? antelefo { get; set; }
|
|
|
|
[Display(Name = "CELLULARE")]
|
|
/// <summary>cellulare</summary>
|
|
public string? annumcel { get; set; }
|
|
|
|
[Display(Name = "PEC")]
|
|
/// <summary>pec</summary>
|
|
public string? an_empec { get; set; }
|
|
|
|
[Display(Name = "RAGIONE SOCIALE"), Required(ErrorMessage = "Ragione sociale obbligatoria")]
|
|
/// <summary>descrizione </summary>
|
|
public string? andescri { get; set; }
|
|
|
|
[Display(Name = "CODICE LISTINO")]
|
|
/// <summary>listino cliente </summary>
|
|
public string? annumlis { get; set; }
|
|
|
|
[Display(Name = "DATA CANCELLAZIONE")]
|
|
/// <summary> cliente eliminato </summary>
|
|
public DateTime? andtobso { get; set; }
|
|
|
|
|
|
}
|
|
}
|