/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rjconsultores.ventaboletos.service; import java.util.List; /** * * @author Administrador */ public interface GenericService { public List obtenerTodos(); public T obtenerID(ID id); public T suscribir(T entidad); public T actualizacion(T entidad); public void borrar(T entidad); }