public void UnregisterActiveView(IReceptionistView view)
 {
     UnloadGrammar(view.GetGrammar());
     this.ActiveViews.Remove(view);
 }
 public void UnregisterActiveView(IReceptionistView view)
 {
     UnloadGrammar(view.GetGrammar());
     this.ActiveViews.Remove(view);
 }
 public void RegisterActiveView(IReceptionistView view)
 {
     this.ActiveViews.Add(view);
     LoadGrammar(view.GetGrammar());
 }
 public void RegisterActiveView(IReceptionistView view)
 {
     this.ActiveViews.Add(view);
     LoadGrammar(view.GetGrammar());
 }