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