package com.rjconsultores.ventaboletos.service; import java.util.List; import com.rjconsultores.ventaboletos.entidad.GP_Pricing; import com.rjconsultores.ventaboletos.entidad.GP_PricingOcupaAntecipa; import com.rjconsultores.ventaboletos.exception.BusinessException; import com.rjconsultores.ventaboletos.vo.pricing.GP_PricingOcupaAntecipaLegendaVO; import com.rjconsultores.ventaboletos.vo.pricing.GP_PricingOcupaAntecipaVO; public interface GP_PricingOcupaAntecipaService { public GP_PricingOcupaAntecipa obtenerID(Integer pricingocupaantecipaId) throws BusinessException; public GP_PricingOcupaAntecipa suscribir(GP_PricingOcupaAntecipa entidad) throws BusinessException; public GP_PricingOcupaAntecipa actualizacion(GP_PricingOcupaAntecipa entidad) throws BusinessException; public void borrar(GP_PricingOcupaAntecipa entidad); public List updateList(GP_PricingOcupaAntecipa entidad); public List carregarPricingOcupaAntecipaVO(Integer pricingId); public List carregarPricingOcupaAntecipa(Integer pricingId); public List carregarPricingOcupaAntecipaLegenda(Integer pricingId); List carregarPricingOcupaAntecipaVO(List pricingOcupaAntecipas); List carregarPricingOcupaAntecipaLegenda(List lsPricingOcupaAntecipa); public List obtenerTodoPorPricing(GP_Pricing pricing); }