Beispiel #1
0
        private TypeId_I GetStandardTypeIdTypeId(TypeGlobalContext_I context)
        {
            lock (context.SyncRoot)
            {
                if (context.StandardTypeIdTypeId == null)
                {
                    StandardTypeId id = new StandardTypeId();

                    XIdentification.IssueId(id);

                    id.TypeId = id;

                    context.StandardTypeIdTypeId = id;
                }

                return(context.StandardTypeIdTypeId);
            }
        }
Beispiel #2
0
        public TypeGlobalContext_I GetGlobalContext()
        {
            TypeGlobalContext_I context = XContextualBase.GetGlobal <TypeGlobalContext_I>();

            return(context);
        }