@Override
 @Transactional(readOnly = true)
 public List<Course> findCourses(Customer customer) {
   return customerSubscriptionDao.findCoursesByCustomer(customer);
 }