mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-02 01:24:07 +00:00
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
29 lines
1.2 KiB
Dart
29 lines
1.2 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'contact_groups.dao.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
mixin _$ContactGroupsDaoMixin on DatabaseAccessor<TwonlyDB> {
|
|
$ContactGroupsTable get contactGroups => attachedDatabase.contactGroups;
|
|
$ContactsTable get contacts => attachedDatabase.contacts;
|
|
$GroupsTable get groups => attachedDatabase.groups;
|
|
$ContactGroupMembersTable get contactGroupMembers =>
|
|
attachedDatabase.contactGroupMembers;
|
|
ContactGroupsDaoManager get managers => ContactGroupsDaoManager(this);
|
|
}
|
|
|
|
class ContactGroupsDaoManager {
|
|
final _$ContactGroupsDaoMixin _db;
|
|
ContactGroupsDaoManager(this._db);
|
|
$$ContactGroupsTableTableManager get contactGroups =>
|
|
$$ContactGroupsTableTableManager(_db.attachedDatabase, _db.contactGroups);
|
|
$$ContactsTableTableManager get contacts =>
|
|
$$ContactsTableTableManager(_db.attachedDatabase, _db.contacts);
|
|
$$GroupsTableTableManager get groups =>
|
|
$$GroupsTableTableManager(_db.attachedDatabase, _db.groups);
|
|
$$ContactGroupMembersTableTableManager get contactGroupMembers =>
|
|
$$ContactGroupMembersTableTableManager(
|
|
_db.attachedDatabase,
|
|
_db.contactGroupMembers,
|
|
);
|
|
}
|