part of '../outlet.dart'; abstract class IOutletRepository { Future>> getOutlets({ int page = 1, int limit = 10, }); Future> getOutletById(String id); Future currentOutlet(); }