| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //------------------------------------------------------------------------------
- // <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 cartescolaire
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public cartescolaire()
- {
- this.elevecartescolaire = new HashSet<elevecartescolaire>();
- this.simulationannee = new HashSet<simulationannee>();
- this.urbanisationcartescolaire = new HashSet<urbanisationcartescolaire>();
- }
-
- public int id { get; set; }
- public string nom { get; set; }
- public Nullable<decimal> adresseoptbd { get; set; }
- public string adressenomcouche { get; set; }
- public string adressenomchamp { get; set; }
- public string adressenomchampprim { get; set; }
- public Nullable<decimal> voieoptbd { get; set; }
- public string voienomcouche { get; set; }
- public string voienomchamp { get; set; }
- public string voienomchampprim { get; set; }
- public Nullable<decimal> etablissementoptbd { get; set; }
- public string etablissementnomcouche { get; set; }
- public string etablissementnomchamp { get; set; }
- public string etablissementnomchampprim { get; set; }
- public Nullable<decimal> ecoleoptbd { get; set; }
- public string ecolenomcouche { get; set; }
- public string ecolenomchamp1 { get; set; }
- public string ecolenomchampratio1 { get; set; }
- public string ecolenomchamp2 { get; set; }
- public string ecolenomchampratio2 { get; set; }
- public Nullable<System.DateTime> datederniercalcul { get; set; }
- public string adressenomchampdistance { get; set; }
- public string adressenomchampdistanceprim { get; set; }
- public string parcellenomchampdistance { get; set; }
- public string parcellenomchampdistanceprim { get; set; }
- public string parcellenomchamp { get; set; }
- public string parcellenomchampprim { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<elevecartescolaire> elevecartescolaire { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<simulationannee> simulationannee { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<urbanisationcartescolaire> urbanisationcartescolaire { get; set; }
- }
- }
|