commune.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 commune
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public commune()
  17. {
  18. this.rues = new HashSet<rue>();
  19. }
  20. public int id { get; set; }
  21. public string nom { get; set; }
  22. public string code { get; set; }
  23. public string insee { get; set; }
  24. public Nullable<decimal> superficie { get; set; }
  25. public string maire { get; set; }
  26. public string adresse { get; set; }
  27. public string tel { get; set; }
  28. public string fax { get; set; }
  29. public string email { get; set; }
  30. public string urbanisationemail { get; set; }
  31. public string urbanisationinterlocuteur { get; set; }
  32. public string urbanisationtel { get; set; }
  33. public Nullable<decimal> optcommunecollege { get; set; }
  34. public string rpi { get; set; }
  35. public string web { get; set; }
  36. public Nullable<int> idcanton { get; set; }
  37. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  38. public virtual ICollection<rue> rues { get; set; }
  39. }
  40. }