Ejemplo n.º 1
0
 public static screening GetForm()
 {
     string cacheKey = typeof(screening).FullName;
     screening form = (screening)common.Data.dataCache.Find(cacheKey);
     if (form != null && !form.IsDisposed) return form;
     form = new Forms.screening();
     common.Data.dataCache.Add(cacheKey, form);
     return form;
 }
Ejemplo n.º 2
0
        public static screening GetForm()
        {
            string    cacheKey = typeof(screening).FullName;
            screening form     = (screening)common.Data.dataCache.Find(cacheKey);

            if (form != null && !form.IsDisposed)
            {
                return(form);
            }
            form = new Forms.screening();
            common.Data.dataCache.Add(cacheKey, form);
            return(form);
        }