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