add delivery
This commit is contained in:
@@ -28,4 +28,9 @@ class CartonServiceImp implements CartonService {
|
||||
Future<void> updateCarton(Carton carton) {
|
||||
return cartonDataProvider.updateCarton(carton);
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> deliver(Carton carton) {
|
||||
return cartonDataProvider.deliver(carton);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,4 +4,5 @@ abstract class CartonService {
|
||||
Future<void> createCarton(Carton carton);
|
||||
Future<void> updateCarton(Carton carton);
|
||||
Future<void> deleteCarton(Carton carton);
|
||||
Future<void> deliver(Carton carton);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user