Ejemplo n.º 1
0
 public void HandSetChannel(int inputData)
 {
     Channel = ChangeParams.HandSet(inputData);
 }
Ejemplo n.º 2
0
 public void DecreaseChannel()
 {
     Channel = ChangeParams.Decrease(Channel);
 }
Ejemplo n.º 3
0
 //Channel
 public void IncreaseChannel()
 {
     Channel = ChangeParams.Increase(Channel);
 }
Ejemplo n.º 4
0
 public void HandSetVolume(int inputData)
 {
     Volume = ChangeParams.HandSet(inputData);
 }
Ejemplo n.º 5
0
 public void DecreaseVolume()
 {
     Volume = ChangeParams.Decrease(Volume);
 }
Ejemplo n.º 6
0
 public void IncreaseVolume()
 {
     Volume = ChangeParams.Increase(Volume);
 }