Ejemplo n.º 1
0
 public static DataProviderManager GetInstance()
 {
     lock (lockObj) {
         if (instance == null)
         {
             instance = new DataProviderManager();
         }
     }
     return(instance);
 }
 public static DataProviderManager GetInstance()
 {
     lock (lockObj) {
         if (instance == null)
             instance = new DataProviderManager();
     }
     return instance;
 }
Ejemplo n.º 3
0
 public static void Initialize()
 {
     DataProviderManager.GetInstance();
 }