Rev 106 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 106 | Rev 195 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | package br.com.ec.domain.service.banco.impl; |
1 | package br.com.ec.domain.service.banco.impl; |
| 2 | 2 | ||
| 3 | import org.springframework.beans.factory.annotation.Autowired; |
3 | import org.springframework.beans.factory.annotation.Autowired; |
| 4 | import org.springframework.stereotype.Service; |
4 | import org.springframework.stereotype.Service; |
| 5 | 5 | ||
| - | 6 | import br.com.ec.core.generic.AbstractService; |
|
| - | 7 | import br.com.ec.core.generic.GenericRepository; |
|
| - | 8 | import br.com.ec.core.validador.Validador; |
|
| 6 | import br.com.ec.domain.model.Banco; |
9 | import br.com.ec.domain.model.Banco; |
| 7 | import br.com.ec.domain.service.banco.BancoService; |
10 | import br.com.ec.domain.service.banco.BancoService; |
| 8 | import br.com.ec.infrastructure.repository.BancoRepository; |
11 | import br.com.ec.infrastructure.repository.BancoRepository; |
| 9 | import br.edu.cesmac.core.generic.AbstractService; |
- | |
| 10 | import br.edu.cesmac.core.generic.GenericRepository; |
- | |
| 11 | import br.edu.cesmac.core.validador.Validador; |
- | |
| 12 | 12 | ||
| 13 | @Service |
13 | @Service |
| 14 | public class BancoServiceImpl extends AbstractService<Banco> implements BancoService { |
14 | public class BancoServiceImpl extends AbstractService<Banco> implements BancoService { |
| 15 | 15 | ||
| 16 | private BancoRepository bancoRepository; |
16 | private BancoRepository bancoRepository; |