parent
187d9098ce
commit
9b803d581c
@ -1,16 +1,20 @@ |
|||||||
package de.kreth.vaadin.clubhelper.vaadinclubhelper.dao; |
package de.kreth.vaadin.clubhelper.vaadinclubhelper.dao; |
||||||
|
|
||||||
|
import javax.persistence.EntityManager; |
||||||
|
|
||||||
import org.springframework.stereotype.Repository; |
import org.springframework.stereotype.Repository; |
||||||
|
|
||||||
import de.kreth.vaadin.clubhelper.vaadinclubhelper.data.ClubEvent; |
import de.kreth.vaadin.clubhelper.vaadinclubhelper.data.ClubEvent; |
||||||
|
|
||||||
@Repository |
@Repository |
||||||
public class ClubEventDaoImpl extends AbstractDaoImpl<ClubEvent> |
public class ClubEventDaoImpl extends AbstractDaoImpl<ClubEvent> implements ClubEventDao { |
||||||
implements |
|
||||||
ClubEventDao { |
|
||||||
|
|
||||||
public ClubEventDaoImpl() { |
public ClubEventDaoImpl() { |
||||||
super(ClubEvent.class); |
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