| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CG67.FicheCollege.Domaine
- {
- public class EtablissementRecrutement
- {
- private string libelle;
- public string Libelle
- {
- get { return libelle; }
- set { libelle = value; }
- }
- public EtablissementRecrutement(string libelle)
- {
- this.libelle = libelle;
- }
- }
- }
|