static partial void RealInstanceFactory(ref ICancelableAsyncResult real, string callerName)
        {
            var          store = WorkItemStoreWrapper_UnitTests.GetRealInstance();
            const string wiql  = "SELECT * FROM WorkItems WHERE [System.TeamProject] = 'RestPlaypen' ORDER BY [System.Id] ";
            var          query = new Query(store, wiql);

            real = query.BeginLinkQuery();
        }
        static partial void RealInstanceFactory(ref WorkItemServer real, string callerName)
        {
            var store = WorkItemStoreWrapper_UnitTests.GetRealInstance();

            real = store.ClientService;
        }