예제 #1
0
파일: NDInfoList.cs 프로젝트: mwilian/demos
 //  Method GetNDInfoList
 public static NDInfoList GetNDInfoList(string DB)
 {
     if (_list == null & _DTB != DB)
     {
         _DTB  = DB;
         _list = new NDInfoList(DB);
         _list.DataPortal_Fetch();
     }
     return(_list);
 }
예제 #2
0
파일: NDInfoList.cs 프로젝트: mwilian/demos
 //  Method InvalidateCache
 public static void InvalidateCache()
 {
     _list = null;
 }