13 lines
269 B
Dart
13 lines
269 B
Dart
part of '../outlet.dart';
|
|
|
|
abstract class IOutletRepository {
|
|
Future<Either<OutletFailure, List<Outlet>>> getOutlets({
|
|
int page = 1,
|
|
int limit = 10,
|
|
});
|
|
|
|
Future<Either<OutletFailure, Outlet>> getOutletById(String id);
|
|
|
|
Future<Outlet> currentOutlet();
|
|
}
|