blob: 7ba526d0914e829a00a1fb5741fe11d060346c78 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2017-2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
package org.eclipse.openk.elogbook.persistence.dao;
import javax.persistence.EntityManager;
import org.eclipse.openk.elogbook.persistence.model.RefBranch;
public class RefBranchDao extends GenericDaoJpa<RefBranch, Long> {
public RefBranchDao() {
super();
}
public RefBranchDao(EntityManager em) {
super(em);
}
}