public static void ReleaseInstance()
 {
     if (m_instance != null)
     {
         m_instance = null;
     }
 }
 public static OPCNodeNDataPointDAO GetInstance()
 {
     if (m_instance == null)
     {
         m_instance = new OPCNodeNDataPointDAO();
     }
     return(m_instance);
 }