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

com.harium.database.model.BaseDAO Maven / Gradle / Ivy

The newest version!
package com.harium.database.model;

import java.util.List;

public interface BaseDAO {
    void init(C connection);

    List queryAll();

    int create(T model);

    int update(T model);

    int delete(T model);

    Class getKlass();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy