public void RemoveServiceInvocationHandler(IServiceInvocationHandler handler)
 {
     handler.Finalise();
     _serviceHandlers.Remove(handler);
 }
 public void AddServiceInvocationHandler(IServiceInvocationHandler handler)
 {
     _serviceHandlers.Add(handler);
 }