All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.carlopantaleo.jmodel.dao.AnotherTableDao Maven / Gradle / Ivy

There is a newer version: 0.1.5
Show newest version
package com.github.carlopantaleo.jmodel.dao;

import com.github.carlopantaleo.jmodel.basedao.BaseDao;
import com.jmodel.generated.AnotherTable;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

@Repository
public class AnotherTableDao extends BaseDao {
    @Autowired
    public AnotherTableDao(SessionFactory sessionFactory) {
        super(sessionFactory);
        setClazz(AnotherTable.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy