Example #1
0
 public SqlLiteProductListDataStore(ISQLLiteDb db) : base(db.GetConnection())
 {
 }
 public SQLiteProductItemDataStore(ISQLLiteDb db)
 {
     this._connection = db.GetConnection();
     _connection.CreateTableAsync <ProductItem>();
 }