1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
public partial class contactes
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public contactes()
{
this.groupes = new HashSet<groupes>();
}
public long ID { get; set; }
public string nom { get; set; }
public string prenom { get; set; }
public string tel { get; set; }
public string mail { get; set; }
public long etat { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<groupes> groupes { get; set; }
}
et
public partial class groupes
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public groupes()
{
this.contactes = new HashSet<contactes>();
}
public long ID { get; set; }
public string nom { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<contactes> contactes { get; set; }
} |
Partager