| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CG67.FicheCollege.Domaine
- {
- public class EffectifDetail
- {
- private int mAnnee;
- public int Annee
- {
- get { return mAnnee; }
- set { mAnnee = value; }
- }
- private string mFiliere;
- public string Filiere
- {
- get { return mFiliere; }
- set { mFiliere = value; }
- }
- private int mEffectifDetail;
- public int DetailEffectif
- {
- get { return mEffectifDetail; }
- set { mEffectifDetail = value; }
- }
- public EffectifDetail(int annee, string filiere, int effectifDetail)
- {
- this.mAnnee = annee;
- this.mFiliere = filiere;
- this.mEffectifDetail = effectifDetail;
- }
-
- }
- }
|