| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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é.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace CD67.FicheCollege.Entity
- {
- using System;
- using System.Collections.Generic;
-
- public partial class commune
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public commune()
- {
- this.rues = new HashSet<rue>();
- }
-
- public int id { get; set; }
- public string nom { get; set; }
- public string code { get; set; }
- public string insee { get; set; }
- public Nullable<decimal> superficie { get; set; }
- public string maire { get; set; }
- public string adresse { get; set; }
- public string tel { get; set; }
- public string fax { get; set; }
- public string email { get; set; }
- public string urbanisationemail { get; set; }
- public string urbanisationinterlocuteur { get; set; }
- public string urbanisationtel { get; set; }
- public Nullable<decimal> optcommunecollege { get; set; }
- public string rpi { get; set; }
- public string web { get; set; }
- public Nullable<int> idcanton { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<rue> rues { get; set; }
- }
- }
|