public void StartService() { var startInfo = ServiceRunner.StartService <ITestServiceImpl>("TestServiceImpl", new TestServiceImpl()); _service = startInfo.Item1; _client = startInfo.Item2; }
public void StopService() { _service.Stop(); _client = null; }