order page
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
part of '../order.dart';
|
||||
|
||||
abstract class IOrderRepository {
|
||||
Future<Either<OrderFailure, ListOrder>> getOrders({
|
||||
int page = 1,
|
||||
int limit = 10,
|
||||
String status = 'completed',
|
||||
required DateTime startDate,
|
||||
required DateTime endDate,
|
||||
String? search,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user