9 lines
174 B
Dart
9 lines
174 B
Dart
|
|
part of '../customer.dart';
|
||
|
|
|
||
|
|
abstract class ICustomerRepository {
|
||
|
|
Future<Either<CustomerFailure, ListCustomer>> getCustomer({
|
||
|
|
int page = 1,
|
||
|
|
int limit = 10,
|
||
|
|
});
|
||
|
|
}
|