Esempio n. 1
0
 public StaticDataRepository(ISqlLiteConnection sqlLiteConnection)
 {
     this.sqlLiteConnection = sqlLiteConnection;
 }
Esempio n. 2
0
        public UserRepository(ISqlLiteConnection sqlLiteConnection)
        {
            this.sqlLiteConnection = sqlLiteConnection;

            this.sqlLiteConnection.GetConnection().CreateTable <UserEntity>();
        }