College.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Ce code a été généré à partir d'un modèle.
  4. //
  5. // Des modifications manuelles apportées à ce fichier peuvent conduire à un comportement inattendu de votre application.
  6. // Les modifications manuelles apportées à ce fichier sont remplacées si le code est régénéré.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace CD67.FicheCollege.Entity
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class College
  14. {
  15. public string Id { get; set; }
  16. public string Libelle { get; set; }
  17. public string Adresse { get; set; }
  18. public string Code_Postal { get; set; }
  19. public int TypeCollege_Id { get; set; }
  20. public string Commune_Insee { get; set; }
  21. public string Commune { get; set; }
  22. public string Canton { get; set; }
  23. public string Territoire_Id { get; set; }
  24. public string TAD { get; set; }
  25. public string CDC { get; set; }
  26. public string Tel { get; set; }
  27. public string Fax { get; set; }
  28. public string Email { get; set; }
  29. public virtual Territoire Territoire { get; set; }
  30. public virtual TypeCollege TypeCollege { get; set; }
  31. }
  32. }