transfer table
This commit is contained in:
@@ -4,6 +4,7 @@ abstract class ITableRepository {
|
||||
Future<Either<TableFailure, ListTable>> fetchTables({
|
||||
int page = 1,
|
||||
int limit = 50,
|
||||
String? status,
|
||||
});
|
||||
|
||||
Future<Either<TableFailure, Table>> createTable({
|
||||
@@ -15,4 +16,9 @@ abstract class ITableRepository {
|
||||
required String id,
|
||||
required Offset position,
|
||||
});
|
||||
|
||||
Future<Either<TableFailure, Unit>> transferTable({
|
||||
required String fromTableId,
|
||||
required String toTableId,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user