@Service
public class ProductServiceImpl implements ProductService {

	@Autowired
	ProductMapper productMapper;
	
	@Override
	public ProductOutput getProductById(int id) {
		ProductEntity productEntity = new ProductEntity();
		productEntity.setId(1);
		productEntity.setPrice(BigDecimal.TEN);
		productEntity.setProductName("Test Ürün");
		return productMapper.mapProductEntity2Output(productEntity);
	}

	
}