Example #1
0
        public void StartService()
        {
            var startInfo = ServiceRunner.StartService <ITestServiceImpl>("TestServiceImpl", new TestServiceImpl());

            _service = startInfo.Item1;
            _client  = startInfo.Item2;
        }
Example #2
0
 public void StopService()
 {
     _service.Stop();
     _client = null;
 }