Statistiques
| Branche: | Révision:

root / GES_PAC / Model / Journee.cs @ e4adf0cc

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

1

    
2
namespace GES_PAC.Model
3
{
4
    public class Journee
5
    {
6
        public Personne Responsable { get; set; }
7
        public Lieu Lieu { get; set; }
8
        public long Id { get; set; }
9
        public DateTime Date { get; set; }
10
        public string Espece { get; set; }
11
        public string Regime { get; set; }
12
        public List<Serie> Series { get; set; }
13
        public List<Calibration> Calibrations { get; set; }
14
        
15
        public Journee(DateTime Date, Personne Responsable, Lieu Lieu, string Espece, string Regime)
16
        {
17
            this.Responsable = Responsable;
18
            this.Lieu = Lieu;
19
            this.Date = Date;
20
            this.Espece = Espece;
21
            this.Regime = Regime;
22
            this.Series = [];
23
            this.Calibrations = [];
24
        }
25
    }
26
}