2020-10-19 05:13:49 +06:30
|
|
|
import 'package:fcs/domain/entities/carton.dart';
|
|
|
|
|
|
|
|
|
|
abstract class CartonService {
|
2021-01-07 18:15:39 +06:30
|
|
|
Future<Carton> createCarton(Carton carton);
|
2020-10-19 05:13:49 +06:30
|
|
|
Future<void> updateCarton(Carton carton);
|
|
|
|
|
Future<void> deleteCarton(Carton carton);
|
2020-10-21 05:40:58 +06:30
|
|
|
Future<void> deliver(Carton carton);
|
2020-10-19 05:13:49 +06:30
|
|
|
}
|