Effectif.cs 927 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CG67.FicheCollege.Domaine
  5. {
  6. public class Effectif
  7. {
  8. private string annee;
  9. public string Annee
  10. {
  11. get { return annee; }
  12. set { annee = value; }
  13. }
  14. private string typeEffectif;
  15. public string TypeEffectif
  16. {
  17. get { return typeEffectif; }
  18. set { typeEffectif = value; }
  19. }
  20. private int effectifTotal;
  21. public int EffectifTotal
  22. {
  23. get { return effectifTotal; }
  24. set { effectifTotal = value; }
  25. }
  26. public Effectif()
  27. {
  28. }
  29. public Effectif(string annee, string typeEffectif, int effectifTotal)
  30. {
  31. this.annee = annee;
  32. this.typeEffectif = typeEffectif;
  33. this.effectifTotal = effectifTotal;
  34. }
  35. }
  36. }