CustomerDAO.java 202 Bytes
package com.my.customer.dao;

import com.my.customer.model.Customer;

public interface CustomerDAO {
    
    public void insert(Customer customer);

    public Customer findByCustomerId(int custId);
}