示例#1
0
 public Servants(TerkUserPrx mainServantProxy,
                 ConnectionEventHandlerPrx connectionEventHandlerProxy,
                 List <ObjectPrx> secondaryServantProxies)
 {
     this.mainServantProxy            = mainServantProxy;
     this.connectionEventHandlerProxy = connectionEventHandlerProxy;
     if ((secondaryServantProxies != null) && (secondaryServantProxies.Count > 0))
     {
         this.secondaryServantProxies.AddRange(secondaryServantProxies);
     }
 }
示例#2
0
 public Servants(TerkUserPrx mainServantProxy,
                 ConnectionEventHandlerPrx connectionEventHandlerProxy) :
     this(mainServantProxy, connectionEventHandlerProxy, null)
 {
 }