15 lines
276 B
Java
15 lines
276 B
Java
package com.baeldung.service;
|
|
|
|
import com.baeldung.model.Customer;
|
|
|
|
import java.util.Optional;
|
|
|
|
public interface CustomerService {
|
|
|
|
Customer createCustomer(Customer customer);
|
|
|
|
Optional<Customer> findCustomer(String id);
|
|
|
|
void updateCustomer(Customer customer);
|
|
}
|