15 lines
341 B
Java
15 lines
341 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.service;
|
|
|
|
import com.rjconsultores.ventaboletos.entidad.ProdClaseServicio;
|
|
|
|
/**
|
|
*
|
|
* @author Rafius
|
|
*/
|
|
public interface ProdClaseServicioService extends GenericService<ProdClaseServicio, Integer> {
|
|
}
|