parent
187d9098ce
commit
9b803d581c
@ -1,16 +1,20 @@ |
||||
package de.kreth.vaadin.clubhelper.vaadinclubhelper.dao; |
||||
|
||||
import javax.persistence.EntityManager; |
||||
|
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
import de.kreth.vaadin.clubhelper.vaadinclubhelper.data.ClubEvent; |
||||
|
||||
@Repository |
||||
public class ClubEventDaoImpl extends AbstractDaoImpl<ClubEvent> |
||||
implements |
||||
ClubEventDao { |
||||
public class ClubEventDaoImpl extends AbstractDaoImpl<ClubEvent> implements ClubEventDao { |
||||
|
||||
public ClubEventDaoImpl() { |
||||
super(ClubEvent.class); |
||||
} |
||||
|
||||
public void setEntityManager(EntityManager em) { |
||||
this.em = em; |
||||
} |
||||
|
||||
} |
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue