コード例 #1
0
 public GraphicMonthSaveing(GraphicTime turnOnTime, GraphicTime turnOffTime)
 {
     this.TurnOffTime = turnOffTime;
     this.TurnOnTime  = turnOnTime;
 }
コード例 #2
0
 public GraphicDay(string number)
 {
     this.Number      = number;
     this.TurnOffTime = new GraphicTime(0xff, 0xff);
     this.TurnOnTime  = new GraphicTime(0xff, 0xff);
 }
コード例 #3
0
 public GraphicMonthSaveing()
 {
     this.TurnOffTime = new GraphicTime(0xff, 0xff);
     this.TurnOnTime  = new GraphicTime(0xff, 0xff);
 }
コード例 #4
0
 public GraphicDay(string number, GraphicTime turnOnTime, GraphicTime turnOffTime)
 {
     this.Number      = number;
     this.TurnOnTime  = turnOnTime;
     this.TurnOffTime = turnOffTime;
 }