package admin;

/**
 ** The DBui Class is responsible for showing
 ** the main database menu. 
 ** @author isellar
 **/


public abstract class DBui{

	/** 
	 *  instructorDB function takes you to a view of the instructor database
	 */
	public abstract void instructorDB();

	/**
	 *  newInstructor function takes you straight to the add new instructor dialog
	 */
	public abstract void newInstructor();

	/**
	 *  classDB function takes you to a view of the class database
	 */
	public abstract void classDB();

	/**
	 *  newClass function takes you straight to the add new class dialog
	 */
	public abstract void newClass();

	/**
	 *  roomDB function takes you to a view of the room database
	 */
	public abstract void roomDB();

	/**
	 *  newRoom function takes you straght to the add new room dialog
	 */
	public abstract void newRoom();
}