package dst.ass1.jpa.model;

public interface IEnrollmentKey {

    IParticipant getParticipant();

    void setParticipant(IParticipant participant);

    ICourse getCourse();

    void setCourse(ICourse course);

}
