School Commit Init
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user