public void GetBookings() // Get the list of bookings from persistance
        {
            LoggedInSingleton loggedinsingleton = LoggedInSingleton.Instance;
            int studentID = loggedinsingleton.LoggedStudentID;

            Bookings = Persistance.GetBookings(studentID);
        }