29 lines
714 B
Java
29 lines
714 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.rjconsultores.ventaboletos.service.impl;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.rjconsultores.ventaboletos.dao.BoletoDAO;
|
|
import com.rjconsultores.ventaboletos.entidad.Boleto;
|
|
import com.rjconsultores.ventaboletos.service.BoletoService;
|
|
|
|
/**
|
|
*
|
|
* @author Fabricio
|
|
*/
|
|
@Service("boletoService")
|
|
public class BoletoServiceImpl implements BoletoService {
|
|
|
|
@Autowired
|
|
private BoletoDAO boletoDAO;
|
|
|
|
public Boleto buscarPeloImeiDoDispositivo(String imei) {
|
|
return boletoDAO.buscarPeloImeiDoDispositivo(imei);
|
|
}
|
|
|
|
}
|