Exemple #1
0
 public AppDatabase(ISqLiteService sqLiteService)
 {
     _connection = sqLiteService.GetConnectionAsync();
     _connection.CreateTableAsync <Session>().Wait();
 }
Exemple #2
0
 public ItemDatabase(ISqLiteService sqLiteService)
 {
     _connection = sqLiteService.GetConnectionAsync();
     _connection.CreateTableAsync <Item>().Wait();
 }