Esempio n. 1
0
        public static async Task <T> DeleteAsync <T>(
            this IMyNoSqlServerClient <MyNoSqlIndex> indexTableStorage,
            string indexPartitionKey,
            string indexRowKey,
            IMyNoSqlServerClient <T> tableStorage)
            where T : class, IMyNoSqlTableEntity, new()
        {
            var index = await indexTableStorage.DeleteAsync(indexPartitionKey, indexRowKey);

            if (index == null)
            {
                return(default);
Esempio n. 2
0
 public BidAskRepository(IMyNoSqlServerClient <BidAskMySqlTableEntity> table)
 {
     _table = table;
 }
 public BidAskHistoryRepository(IMyNoSqlServerClient <BidAskHistoryTableEntity> table)
 {
     _table = table;
 }
 public OvershootIndicatorsDataRepository(IMyNoSqlServerClient <OvershootIndicatorNoSqlEntity> tableData)
 {
     _tableData = tableData;
 }
Esempio n. 5
0
 public IndexInformationRepository(IMyNoSqlServerClient <IndexInformationTableEntity> dbTable)
 {
     _dbTable = dbTable;
 }