Ejemplo n.º 1
0
 public GraphicMonthSaveing(GraphicTime turnOnTime, GraphicTime turnOffTime)
 {
     this.TurnOffTime = turnOffTime;
     this.TurnOnTime  = turnOnTime;
 }
Ejemplo n.º 2
0
 public GraphicDay(string number)
 {
     this.Number      = number;
     this.TurnOffTime = new GraphicTime(0xff, 0xff);
     this.TurnOnTime  = new GraphicTime(0xff, 0xff);
 }
Ejemplo n.º 3
0
 public GraphicMonthSaveing()
 {
     this.TurnOffTime = new GraphicTime(0xff, 0xff);
     this.TurnOnTime  = new GraphicTime(0xff, 0xff);
 }
Ejemplo n.º 4
0
 public GraphicDay(string number, GraphicTime turnOnTime, GraphicTime turnOffTime)
 {
     this.Number      = number;
     this.TurnOnTime  = turnOnTime;
     this.TurnOffTime = turnOffTime;
 }