Exemplo n.º 1
0
 public ElectricBulb(IElectricBulbState state)
 {
     this.State = state;
 }
Exemplo n.º 2
0
 public ElectricBulb()
 {
     this.State = new ElectricBulbOffState();
 }