Initial (redacted) commit.
This commit is contained in:
commit
655f8a036a
368 changed files with 20949 additions and 0 deletions
9
app/lib/sembast/item_repository.dart
Normal file
9
app/lib/sembast/item_repository.dart
Normal file
|
@ -0,0 +1,9 @@
|
|||
abstract class ItemRepository {
|
||||
Future<int> insertItem(dynamic item);
|
||||
|
||||
Future<void> updateItem(dynamic item);
|
||||
|
||||
Future<void> deleteItem(int itemId);
|
||||
|
||||
Stream<List<dynamic>> getAllItemsStream();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue