Exemplo n.º 1
0
        // private Patient patient;



        public Temperature(double temperature, SCALE scale, RECOREDTYPE recordedFrom, RECORDEDDURING partOfDay,
                           DateTime timeStamp)
        {
            this.temperature  = temperature;
            this.scale        = scale;
            this.recordedFrom = recordedFrom;
            this.partOfDay    = partOfDay;
            this.timeStamp    = timeStamp;
            // this.patient = patient;
        }
Exemplo n.º 2
0
 public void setPartOfDay(RECORDEDDURING partOfDay)
 {
     this.partOfDay = partOfDay;
 }