58 lines
1.3 KiB
Java
58 lines
1.3 KiB
Java
package com.rjconsultores.ventaboletos.service.impl;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.rjconsultores.ventaboletos.dao.AbastoHistoDAO;
|
|
import com.rjconsultores.ventaboletos.entidad.AbastoHisto;
|
|
import com.rjconsultores.ventaboletos.entidad.Aidf;
|
|
import com.rjconsultores.ventaboletos.service.AbastoHistoService;
|
|
|
|
@Service("abastoHistoService")
|
|
public class AbastoHistoServiceImpl implements AbastoHistoService {
|
|
|
|
|
|
@Autowired
|
|
private AbastoHistoDAO abastoHistoDAO;
|
|
|
|
@Override
|
|
public List<AbastoHisto> obtenerTodos() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public AbastoHisto obtenerID(Long id) {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public AbastoHisto suscribir(AbastoHisto entidad) {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public AbastoHisto actualizacion(AbastoHisto entidad) {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void borrar(AbastoHisto entidad) {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
@Override
|
|
public void borrarLosQueTienenAIDF(Aidf aidf) {
|
|
abastoHistoDAO.borrarLosQueTienenAIDF(aidf);
|
|
}
|
|
|
|
|
|
|
|
}
|