public SQLiteTagStore(ISQLiteDB db)
 {
     connection = db.GetConnection();
     connection.CreateTableAsync <Tag>();
 }
Exemplo n.º 2
0
 public SQLiteWireframeStore(ISQLiteDB db)
 {
     connection = db.GetConnection();
     connection.CreateTableAsync <Wireframe>();
 }
Exemplo n.º 3
0
 public SQLitePicturePosts(ISQLiteDB db)
 {
     _connection = db.GetConnection();
     _connection.CreateTableAsync <PicturePost>();
 }