Пример #1
0
        public void JobReturn(SessionJob job)
        {
            if (delSessionJobReturn == null)
                throw new SecurityException("Not authenticated");

            delSessionJobReturn(job);
        }
Пример #2
0
        private void JobAdd(SessionJob newJob)
        {
            SessionJobList.Add(newJob.ID.Value, newJob);

#if (DEBUG)
            WeakReferenceJobList.Add(newJob.ID.Value, new WeakReference(newJob));
#endif
        }