• Source
    1. @Service
    2. public class ProductServiceImpl implements ProductService {
    3.  
    4. @Autowired
    5. ProductMapper productMapper;
    6.  
    7. @Override
    8. public ProductOutput getProductById(int id) {
    9. ProductEntity productEntity = new ProductEntity();
    10. productEntity.setId(1);
    11. productEntity.setPrice(BigDecimal.TEN);
    12. productEntity.setProductName("Test Ürün");
    13. return productMapper.mapProductEntity2Output(productEntity);
    14. }
    15.  
    16.  
    17. }