public List <float> selectValuesfromDB(string yAxisValue, string InputAlgorithmValue, string MazeSizeValue, float Threshold, string SensorTypeValue)
    {
        ExperimentalDesignDb expdb = new ExperimentalDesignDb();

        Start();
        List <float> range = new List <float>();

        range = expdb.Select(dbConnection, yAxisValue, InputAlgorithmValue, MazeSizeValue, Threshold, SensorTypeValue);
        return(range);
    }
    public List <float> selectValuesfromDB(string yAxisValue, int Expid)
    {
        ExperimentalDesignDb expdb = new ExperimentalDesignDb();

        Start();
        List <float> range = new List <float>();

        range = expdb.Select(dbConnection, yAxisValue, Expid);
        return(range);
    }