Ejemplo n.º 1
0
 public static void InteractorConstructed(Interactor.Base interactor)
 {
     if (_interactors == null)
     {
         _interactors = new ArrayList();
     }
     _interactors.Add(interactor);
 }
Ejemplo n.º 2
0
 public static void InteractorDisposed(Interactor.Base interactor)
 {
     _interactors.Remove(interactor);
 }