package com.iluwatar.common; import java.util.List; /** * * Dao interface. * * @param * */ public interface Dao { E find(Long id); void persist(E entity); E merge(E entity); void delete(E entity); List findAll(); }