Java back-end server programming; includes various exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
227 B

  1. package com.example.sqltest.model;
  2. import java.util.List;
  3. public interface CustomerDAO {
  4. public void save(Customer customer);
  5. public Customer findById(Long id);
  6. public List<Customer> findAll();
  7. public void dropAll();
  8. }