Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Class DemandeConge{
- int codeEmploye;
- DateTime dateDebut;
- int duree;
- string motif;
- string etat;
- // Ajouter les Propriétées
- //....
- public DemandeConge(){}
- public DemandeConge(int code,DateTime dateDebut,int duree,string motif){
- codeEmploye=code;
- this.dateDebut=dateDebut;
- this.duree=duree;
- this.motif=motif;
- etat="En cours";
- }
- public void Valider(){
- etat = "Validé";
- }
- public void Refuser(){
- etat = "Refusé";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment