namespace Universal.IO; public class IOFactory { public static ITcpServer GetTcpServer() => new IOTcpServer(); public static ITcpClient GetTcpClient() => new IOTcpClient(); }