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

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