DataJPA/src/main/kotlin/com/chantha/jdbc/controller/CustomerController.kt
2020-05-16 17:20:48 +07:00

21 lines
765 B
Kotlin

package com.chantha.jdbc.controller
import com.chantha.jdbc.jpa.model.Customer
import com.chantha.jdbc.jpa.model.Order
import com.chantha.jdbc.jpa.service.customer.CustomerService
import com.chantha.jdbc.jpa.view.ViewsInvoice
import org.apache.tomcat.util.json.JSONParser
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.http.ResponseEntity
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RestController
@Suppress("UNCHECKED_CAST")
@RestController
class CustomerController @Autowired constructor(private val customerService: CustomerService) {
@GetMapping("/customer")
fun customer():List<Customer>{
return customerService.findAll().toList()
}
}