public Course GetByID(int ID) { try { var dobj = new CourseDomainObject(); return(dobj.GetByID(ID)); } catch (Exception) { throw; } }