public void AddChild(CallPattern callPattern, IMethodMock methodMock, int id)
        {
            var node = new MethodMockMatcherTreeNode(methodMock, id);

            callPattern.MethodMockNode = node;
            AddChildInternal(callPattern, 0, node);
        }
		public void AddChild(CallPattern callPattern, IMethodMock methodMock,int id)
		{
			var node = new MethodMockMatcherTreeNode(methodMock, id);
			callPattern.MethodMockNode = node;
			AddChildInternal(callPattern, 0, node);
		}
		public void AddChild(CallPattern callPattern, MethodMockMatcherTreeNode node)
		{
			AddChildInternal(callPattern, 0, node);
		}
 public void AddChild(CallPattern callPattern, MethodMockMatcherTreeNode node)
 {
     AddChildInternal(callPattern, 0, node);
 }