Files
2024-08-31 12:07:21 +03:00

11 lines
274 B
Java

package Repository;
import Model.IVehicle;
public interface IRepository {
public void add(IVehicle vehicle) throws IllegalArgumentException;
public void remove(int index) throws IllegalArgumentException;
public IVehicle[] getAll();
public int getSize();
}