Пример #1
0
        public BerlinClock(DateTime time)
        {
            BerlinFormat berlinFormat = new BerlinFormat();

            berlinFormat.SetStandardTime(time);
            timeFormat = berlinFormat;
        }
Пример #2
0
 public BerlinClock(BerlinFormat time, String topLampColor, String hourLampColor, String offLampColor)
 {
     timeFormat        = time;
     this.yellowColor  = topLampColor;
     this.redColor     = hourLampColor;
     this.offLampColor = offLampColor;
 }
Пример #3
0
 public BerlinClock(BerlinFormat time)
 {
     timeFormat = time;
 }