public bool IsFilled(int column)
        {
            CustomBasicList <SpaceInfoCP> thisList = _privateBoard.GetAllRows(column);

            return(thisList.All(items => items.IsFilled() == true));
        }