This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
computer-web/src/main/java/example/service/IComputerService.java

14 lines
294 B
Java
Raw Normal View History

2024-12-21 01:22:44 +08:00
package example.service;
import example.model.Computer;
import java.sql.SQLException;
import java.util.List;
public interface IComputerService {
public void addComputer(String name, String brand, String type, String price);
List<Computer> listComputer() throws SQLException;
}