Files
MedAP/MedAP_data/CDC.cs
T
2018-01-03 12:04:22 +01:00

32 lines
1.1 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// Codice generato da un modello.
//
// Le modifiche manuali a questo file potrebbero causare un comportamento imprevisto dell'applicazione.
// Se il codice viene rigenerato, le modifiche manuali al file verranno sovrascritte.
// </auto-generated>
//------------------------------------------------------------------------------
namespace MedAP_data
{
using System;
using System.Collections.Generic;
public partial class CDC
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public CDC()
{
this.UTENTE = new HashSet<UTENTE>();
}
public string COD_CDC { get; set; }
public string DESCRIZIONE { get; set; }
public string COD_TIPO { get; set; }
public string POSIZIONE { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<UTENTE> UTENTE { get; set; }
}
}