コード例 #1
0
 public SetValueCommand(ISwitchableItem switchableItem, double value)
 {
     this.switchableItem = switchableItem;
     this.value          = value;
 }
コード例 #2
0
 public SwitchOffCommand(ISwitchableItem switchableItem)
 {
     this.switchableItem = switchableItem;
 }
コード例 #3
0
ファイル: UpCommand.cs プロジェクト: egolab/Design-Patterns
 public UpCommand(ISwitchableItem switchableItem)
 {
     this.switchableItem = switchableItem;
 }