private ZoliloSystem(object anyObject)
 {
     try
     {
         LogManager.Logger.Trace("Initializing ZoliloSystem");
         communicationsDirector = new CommunicationsDirector();
         webDirector = new WebDirector();
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Exemple #2
0
 private TheBrain(object anyObject)
 {
     try
     {
         LogManager.Logger.Trace("Initializing TheBrain");
         communicationsDirector = new CommunicationsDirector();
         webDirector = new WebDirector();
     }
     catch (Exception e)
     {
         throw e;
     }
 }