SecteurRecrutement.cs 433 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CG67.FicheCollege.Domaine
  5. {
  6. public class EtablissementRecrutement
  7. {
  8. private string libelle;
  9. public string Libelle
  10. {
  11. get { return libelle; }
  12. set { libelle = value; }
  13. }
  14. public EtablissementRecrutement(string libelle)
  15. {
  16. this.libelle = libelle;
  17. }
  18. }
  19. }