Statistiques
| Branche: | Révision:

root / GES_PAC / Model / MesureCalibration.cs @ 1019554c

Historique | Voir | Annoter | Télécharger (529 octets)

1

    
2
namespace GES_PAC.Model
3
{
4
    public class MesureCalibration : Mesure
5
    {
6
        public TypeCalibration Type { get; set; }
7
        public string RefBouteille { get; set; }
8

    
9
        public MesureCalibration(DateTime Time, double Conc_O2, double Conc_CO2, double Conc_CH4, TypeCalibration Type, string RefBouteille) : base(Time, Conc_O2, Conc_CO2, Conc_CH4)
10
        {
11
            this.Type = Type;
12
            if (Type.Value != 0)
13
            {
14
                this.RefBouteille = RefBouteille;
15
            }
16
        }
17
    }
18
}