public static TeststraatDB GetTeststraatDB()
        {
            if (_instance == null)
            {
                _instance = new TeststraatDB(Globals.dbconnectstring);
            }

            return(_instance);
        }
        /// <summary>
        /// Setup connection
        /// </summary>
        public void Initialize(string projectName = null)
        {
            _database = TeststraatDBFactory.GetTeststraatDB();

            if (projectName != null)
            {
                RefreshRefProject(projectName);
                RefreshRefTestrun();
            }
        }