예제 #1
0
파일: Case.cs 프로젝트: SMTRPZ/Kovtko-IT71
 public void SetTimeToDay()
 {
     voiceHandler = new DayTimeHandler(storageRoot);
 }
예제 #2
0
파일: Case.cs 프로젝트: SMTRPZ/Kovtko-IT71
 public Case()
 {
     storageRoot  = new HabitationsGroup();
     voiceHandler = new DayTimeHandler(storageRoot);
 }
예제 #3
0
파일: Case.cs 프로젝트: SMTRPZ/Kovtko-IT71
 public void SetTimeToNight()
 {
     voiceHandler = new NightTimeHandler(storageRoot);
 }
예제 #4
0
파일: Case.cs 프로젝트: SMTRPZ/Kovtko-IT71
 public Case(HabitationsGroup unit)
 {
     storageRoot  = unit;
     voiceHandler = new DayTimeHandler(storageRoot);
 }