package sisaloc;

public class SisAlocTeste {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		SisAloc bc = new SisAloc();
		bc.tell(new Horario("SEG",1,"FRED","D1"));
		//bc.tell(new Horario("SEG",2,"FRED","D1"));
		bc.tell(new Horario("TER",1,"FRED","D1"));
		//bc.tell(new Horario("TER",2,"FRED","D1"));
		//bc.tell(new Horario("QUA",1,"FRED","D1"));
		//bc.tell(new Horario("QUA",2,"FRED","D1"));
		

		//bc.tell(new Horario("SEG",1,"PASQ","D2"));
		bc.tell(new Horario("SEG",2,"PASQ","D2"));
		//bc.tell(new Horario("TER",1,"PASQ","D2"));
		//bc.tell(new Horario("TER",2,"PASQ","D2"));
		//bc.tell(new Horario("QUA",1,"PASQ","D2"));
		bc.tell(new Horario("QUA",2,"PASQ","D2"));
		

		//bc.tell(new Horario("SEG",1,"FECH","D3"));
		//bc.tell(new Horario("SEG",2,"FECH","D3"));
		//bc.tell(new Horario("TER",1,"FECH","D3"));
		bc.tell(new Horario("TER",2,"FECH","D3"));
		bc.tell(new Horario("QUA",1,"FECH","D3"));
		//bc.tell(new Horario("QUA",2,"FECH","D3"));
		
		bc.run();
		
	}

}
