/// <summary> /// Construktor /// </summary> public FunctionInterface() { // Create the objects... singleConnection = new SingleConnectionInterface(); multiConnection = new MultiConnectionInterface(); // Add the EventListeners... singleConnection.MsgSendRecived += new MsgSendRecivedEventHandler(SendRecivedEventHandler); multiConnection.MsgSendRecived += new MsgSendRecivedEventHandler(SendRecivedEventHandler); }