package eu.eudat.dao; /** * Created by ikalyvas on 1/25/2018. */ public interface DatabaseAccessLayer { T createOrUpdate(T item); T find(I id); }