public Door(Device device, string name)
     : base(name)
 {
     _device = device;
     CurrentState = new DoorStates.CloseState(this);
 }
 public Door(Device device, string name)
     : base(name)
 {
     _device = device;
     CurrentState = new DoorStates.CloseState(this);
 }