proj reorg into folders;

fixed provider implementation;
added TxnType radio picker
This commit is contained in:
2022-11-12 00:18:08 -05:00
parent 0f54af5662
commit bc0e5f1fea
16 changed files with 1754 additions and 742 deletions

View File

@@ -88,7 +88,7 @@ class DbHelperSqlite {
.delete(Car.tblCars, where: '${Car.colId}=?', whereArgs: [car.id]);
}
Future<int> deleteAll() async {
Future<int> deleteAllCars() async {
Database db = await instance.database as Database;
return await db.rawDelete("DELETE FROM ${Car.tblCars}");
}