![JAR search and dependency download from the Maven repository](/logo.png)
com.github.huifer.crud.interfaces.CrudTemplate Maven / Gradle / Ivy
package com.github.huifer.crud.interfaces;
import com.github.huifer.crud.interfaces.id.IdInterface;
public interface CrudTemplate {
boolean insert(T t);
T byId(I i, Class c);
boolean del(I i, Class c);
boolean editor(I i, T t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy