| 1234567891011121314151617181920212223242526272829303132333435 |
- //------------------------------------------------------------------------------
- // <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 College
- {
- public string Id { get; set; }
- public string Libelle { get; set; }
- public string Adresse { get; set; }
- public string Code_Postal { get; set; }
- public int TypeCollege_Id { get; set; }
- public string Commune_Insee { get; set; }
- public string Commune { get; set; }
- public string Canton { get; set; }
- public string Territoire_Id { get; set; }
- public string TAD { get; set; }
- public string CDC { get; set; }
- public string Tel { get; set; }
- public string Fax { get; set; }
- public string Email { get; set; }
-
- public virtual Territoire Territoire { get; set; }
- public virtual TypeCollege TypeCollege { get; set; }
- }
- }
|