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