DataJPA/src/main/kotlin/com/chantha/jdbc/jpa/service/customer/CustomerService.java
2020-05-17 12:25:24 +07:00

13 lines
324 B
Java

package com.chantha.jdbc.jpa.service.customer;
import com.chantha.jdbc.jpa.model.view.CustomerOrderView;
import com.chantha.jdbc.jpa.repo.CustomerRepo;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public interface CustomerService {
List<CustomerOrderView> fetchAllCustomerOrder();
}