public class RunVenues {
public static void main(String[] args) {
//here Create an object of the type VenueControlClass
//Add code 1 here
VenueControlClass v=new VenueControlClass();
//Call the menuControl() in the VenueControlClass class by using the object
//Add code
v.menuControl();
}
}
Comments
Leave a comment