public CuurentConditionsDisplay(IObservebel observebel)
 {
     this.observebel = observebel;
     whetherData     = new WhetherData();
 }
Пример #2
0
 public void GetData(out WhetherData whetherData)
 {
     whetherData.temp     = this.whetherData.temp;
     whetherData.humidety = this.whetherData.humidety;
     whetherData.presur   = this.whetherData.presur;
 }
 public StatisticsDisplay(IObservebel observebel)
 {
     this.observebel = observebel;
     whetherData     = new WhetherData();
     history         = new Dictionary <DateTime, WhetherData>();
 }