123456789101112131415161718192021222324252627282930313233 |
-
- using System;
- using System.Windows.Forms;
- using TaskDatabase;
- using TaskDatabase.Model;
- namespace Client.Start
- {
-
-
-
- public class ServiceMBIClientHandler
- {
- private static ClientApp m_Client;
- public static void Start()
- {
-
- m_Client = new ClientApp("192.168.20.225", 6666, "E:\\", 3, new RevitCmdExecutor(), 5);
- m_Client.Start();
-
- }
- public static void Stop()
- {
- m_Client?.Close();
- }
- }
- }
|