1 package dst.ass1.jpa.dao;
3 import java.util.Collection;
6 import dst.ass1.jpa.model.ICourse;
8 public interface ICourseDAO extends GenericDAO<ICourse> {
10 Collection<ICourse> findOngoingAndFreeCoursesForPlatform(String platformName);
12 Collection<ICourse> findNonCancelledCoursesBetweenStartAndEnd(Date start, Date end);