 

public class UBCourseDescription
{
	
	private String name; //name of the class - which if we follow our domain diagram consists of lectures
	private String teachers; //name of the teacher(s) who teach this class - the class can have several teachers but each lecture can only have one teacher
	private String description; //description of the class - question: is it possible that this can be ommitted? Or is it the case that the class description is broarder in scope than the description of the lecture? My suggestion is that the Lecture description will be restricted the the individual lecture held in the course of the class, and the class description will be a general description.
	

	public UBCourseDescription(String name, String teacher, String description)
	{
		//this.RoomId = RoomId; I have ommitted RoomId as Lecture can shift rooms during the course, according to the Domain Model.
		this.name = name;
		this.teachers = teachers;
		this.description = description;
	}
	//public int GetRoom()
	//{
	//	return RoomId;
	//}
	public String GetName()
	{
		return name;
	}
	public String GetTeacher()
	{
		return teachers;
	}
	public String GetDescription()
	{
		return description;
	}
	
}