EffectifDetail.cs 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CG67.FicheCollege.Domaine
  5. {
  6. public class EffectifDetail
  7. {
  8. private int mAnnee;
  9. public int Annee
  10. {
  11. get { return mAnnee; }
  12. set { mAnnee = value; }
  13. }
  14. private string mFiliere;
  15. public string Filiere
  16. {
  17. get { return mFiliere; }
  18. set { mFiliere = value; }
  19. }
  20. private int mEffectifDetail;
  21. public int DetailEffectif
  22. {
  23. get { return mEffectifDetail; }
  24. set { mEffectifDetail = value; }
  25. }
  26. public EffectifDetail(int annee, string filiere, int effectifDetail)
  27. {
  28. this.mAnnee = annee;
  29. this.mFiliere = filiere;
  30. this.mEffectifDetail = effectifDetail;
  31. }
  32. }
  33. }