public NetworkServices(ServerMW windowForm) { this.serverMW = windowForm; startListening(); STCB = new ServerToClientBridge(this); DS = new DatabaseServices(this); DS.executeQuery(); }
public fileTransferProtocol(ServerMW serverMW) { this.serverMW = serverMW; t1 = new Thread(new ThreadStart(StartListening)); t1.Start(); }