public void Execute(CourseRequest course) { Course entity = CourseAdapter.GetEntity(course); try { _repository.AddNew(entity); } catch (Exception exc) { throw new StudentException("Eror while create new course!", exc); } }