/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mx.edu.um.mateo.colportor.dao; import java.util.Map; import mx.edu.um.mateo.colportor.model.PedidoColportor; /** * * @author osoto */ public interface PedidoColportorDao { public Map<String, Object> lista(Map<String, Object> params); public PedidoColportor obtiene(Long id); public PedidoColportor crea(PedidoColportor PedidoColportor); public PedidoColportor actualiza(PedidoColportor PedidoColportor); public String elimina(Long id); }