package eu.eudat.models; import eu.eudat.entities.DataEntity; public interface DataModel { void fromDataModel(T entity) throws InstantiationException, IllegalAccessException; T toDataModel() throws Exception; }