| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CG67.FicheCollege.Domaine
- {
- [Serializable]
- public class ProgTravaux
- {
- /// <summary>
- /// Année à laquelle le travail sera effectué
- /// </summary>
- private int mAnnee;
- /// <summary>
- /// libellé de ce travail
- /// </summary>
- private string mLibelle;
- /// <summary>
- /// Montant prévisionnel
- /// </summary>
- private double mMontant;
- /// <summary>
- /// type de l'opération (maintenance, rénovation, etc...)
- /// </summary>
- private string mTypeOperation;
-
- public int Annee
- {
- get { return mAnnee; }
- set { mAnnee = value; }
- }
- public string Libelle
- {
- get { return mLibelle; }
- set { mLibelle = value; }
- }
- public double Montant
- {
- get { return mMontant; }
- set { mMontant = value; }
- }
- public string TypeOperation
- {
- get { return mTypeOperation; }
- set { mTypeOperation = value; }
- }
- public ProgTravaux(int annee, string libelle, double montant, string typeOperation)
- {
- this.mAnnee = annee;
- this.mLibelle = libelle;
- this.mMontant = montant;
- }
- }
- }
|