10 lines
188 B
Dart
10 lines
188 B
Dart
|
|
part of '../customer.dart';
|
||
|
|
|
||
|
|
abstract class ICustomerRepository {
|
||
|
|
Future<Either<CustomerFailure, List<Customer>>> get({
|
||
|
|
int page = 1,
|
||
|
|
int limit = 20,
|
||
|
|
String? search,
|
||
|
|
});
|
||
|
|
}
|