DataJPA/src/main/kotlin/com/chantha/jdbc/jpa/service/product/ProductService.kt
2020-05-16 17:20:48 +07:00

9 lines
249 B
Kotlin

package com.chantha.jdbc.jpa.service.product
import com.chantha.jdbc.jpa.model.view.ProductWithOrderDetail
import org.springframework.stereotype.Service
@Service
interface ProductService {
fun fetchAllProducts(): List<ProductWithOrderDetail>
}