Пример #1
0
        public bool LoadLibrary()
        {
            if (EnsureLibraryLoaded())
            {
                return(true);
            }

            try
            {
                _connection = new LIMSClientLib.LIMSConnection();
                return(true);
            }
            catch
            {
                _connection = null;
                return(false);
            }
        }
Пример #2
0
 public void UnloadLibrary()
 {
     _connection = null;
 }
 public void UnloadLibrary()
 {
     _connection = null;
 }
        public bool LoadLibrary()
        {
            if (EnsureLibraryLoaded()) return true;

            try
            {
                _connection = new LIMSClientLib.LIMSConnection();
                return true;
            }
            catch
            {
                _connection = null;
                return false;
            }
        }