feat: customer page
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
part of '../customer.dart';
|
||||
|
||||
abstract class ICustomerRepository {
|
||||
Future<Either<CustomerFailure, List<Customer>>> get({
|
||||
int page = 1,
|
||||
int limit = 20,
|
||||
String? search,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user