package scheduler.ScheduleDB;

import scheduler.RoomDB.*;
import scheduler.InstructorDB.*;
import scheduler.CourseDB.*;
import scheduler.ScheduleEntry.*;
import scheduler.Attributes.*;

import java.util.Collection;

/**
 *
 * 
        The permanent databases contain static preferences, course
 * selections, 
        teacher preferences and other information that is set a single time
        and applied to the quarter level schedules.
     * 
 * @author 
 * @version 
 *
 **/

public class PermDatabase {

     /** Default Constructor **/
     public PermDatabase() {

     }

     protected RoomDB rdb;

     protected CourseDB cdb;

     protected InstructorDB idb;

     protected Collection<Constraint> cons;

}