Ejemplo n.º 1
0
 public void SetTimeToDay()
 {
     voiceHandler = new DayTimeHandler(storageRoot);
 }
Ejemplo n.º 2
0
 public Case()
 {
     storageRoot  = new HabitationsGroup();
     voiceHandler = new DayTimeHandler(storageRoot);
 }
Ejemplo n.º 3
0
 public void SetTimeToNight()
 {
     voiceHandler = new NightTimeHandler(storageRoot);
 }
Ejemplo n.º 4
0
 public Case(HabitationsGroup unit)
 {
     storageRoot  = unit;
     voiceHandler = new DayTimeHandler(storageRoot);
 }