public TcpServer(string ip, Service service, Type typeCls) : base(ip, service, typeCls) { }
public DeployAppTcpServer(string ip, Service service) : base(ip, service, typeof(DeployAppTcpServer)) { startMessage = "Deploy App TCP started on port: " + service.Port; }
public AbstractServer(string ip, Service service, Type typeCls) { this.ip = ip; logger = Logger.GetLogger(typeCls); Service = service; }