//------------------------------------------------------------------------------ // // Ce code a été généré à partir d'un modèle. // // Des modifications manuelles apportées à ce fichier peuvent conduire à un comportement inattendu de votre application. // Les modifications manuelles apportées à ce fichier sont remplacées si le code est régénéré. // //------------------------------------------------------------------------------ namespace MALDFGASSURANCE.Models { using System; using System.Collections.Generic; public partial class ETABLISSEMENT { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public ETABLISSEMENT() { this.FACTURE = new HashSet(); this.PROFORMAT = new HashSet(); } public string ID_ETABLISSEMENT { get; set; } public string ID_TYPE_ETABLISSEMENT { get; set; } public string NOM_ETABLISSEMENT { get; set; } public string ADRESSE { get; set; } public string CONTACT { get; set; } public string IDUTILISATEUR { get; set; } public Nullable ETAT { get; set; } public Nullable DATECREATION { get; set; } public Nullable DATEMODIFICATION { get; set; } public Nullable DATESUPPRESSION { get; set; } public virtual TYPE_ETABLISSEMENT TYPE_ETABLISSEMENT { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection FACTURE { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection PROFORMAT { get; set; } } }