Esempio n. 1
0
        internal static WorkItemTypeCollectionImpl GetInstance([CallerMemberName] string callerName = "")
        {
            WorkItemTypeCollectionImpl instance = default(WorkItemTypeCollectionImpl);

            InstanceFactory(ref instance, callerName);
            return(instance);
        }
Esempio n. 2
0
 static partial void InstanceFactory(ref WorkItemTypeCollectionImpl instance, [CallerMemberName] string callerName = "");
Esempio n. 3
0
        static partial void InstanceFactory(ref WorkItemTypeCollectionImpl instance, string callerName)
        {
            IReadOnlyList <IWorkItemType> items = new List <IWorkItemType>();

            instance = new WorkItemTypeCollectionImpl(items);
        }