1 package dst.ass1.jpa.model;
3 public interface IMembership {
11 void setPremium(Boolean premium);
15 void setDiscount(Double discount);
17 ICoursePlatform getCoursePlatform();
19 void setCoursePlatform(ICoursePlatform coursePlatform);
21 IParticipant getParticipant();
23 void setParticipant(IParticipant participant);