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