16 lines
453 B
Java
16 lines
453 B
Java
package com.rjconsultores.ventaboletos.service.impl;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.rjconsultores.ventaboletos.dao.OrgaoTramoDAO;
|
|
import com.rjconsultores.ventaboletos.service.OrgaoTramoService;
|
|
|
|
@Service("orgaoTramoService")
|
|
public class OrgaoTramoServiceImpl implements OrgaoTramoService {
|
|
|
|
@Autowired
|
|
private OrgaoTramoDAO orgaoTramoDAO;
|
|
|
|
}
|