Exemplo n.º 1
0
 public RegistrationLogs(INoSQLTableStorage <RegistrationLogEventEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 2
0
 public MarginTradingOrdersHistoryRepository(INoSQLTableStorage <MarginTradingOrderHistoryEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public UserTransferWalletRepository(INoSQLTableStorage <UserTransferWalletEntity> table)
 {
     _table = table;
 }
 public UserRepository(INoSQLTableStorage <UserEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public KycDocumentsRepository(INoSQLTableStorage<KycDocumentEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 6
0
 public OrdersRepository(INoSQLTableStorage<OrderEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 7
0
 public LogToTable(INoSQLTableStorage <LogEntity> tableStorageError, INoSQLTableStorage <LogEntity> tableStorageWarning, INoSQLTableStorage <LogEntity> tableStorageInfo)
 {
     _tableStorageError   = tableStorageError;
     _tableStorageInfo    = tableStorageInfo;
     _tableStorageWarning = tableStorageWarning;
 }
Exemplo n.º 8
0
 public BalanceRepository(INoSQLTableStorage<TraderBalanceEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 private WhitelistedAddressRepository(
     INoSQLTableStorage <WhitelistedAddressEntity> whitelistedAddresses)
 {
     _whitelistedAddresses = whitelistedAddresses;
 }
 public ObservableOperationRepository(INoSQLTableStorage <ObservableOperationEntity> storage)
 {
     _storage = storage;
 }
Exemplo n.º 11
0
 public OffchainTransferRepository(INoSQLTableStorage <OffchainTransferEntity> storage)
 {
     _storage = storage;
 }
 public BlockSyncedRepository(INoSQLTableStorage <BlockSyncedEntity> table, INoSQLTableStorage <AzureIndex> index)
 {
     _table = table;
     _index = index;
 }
Exemplo n.º 13
0
 public AssetAttributeRepository(
     INoSQLTableStorage <AssetAttributeEntity> assetAttributeTable)
 {
     _assetAttributeTable = assetAttributeTable;
 }
Exemplo n.º 14
0
 public TradingConditionsRepository(INoSQLTableStorage <TradingConditionEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 15
0
 public LogToTable(INoSQLTableStorage<LogEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 16
0
 public ClientsRepository(INoSQLTableStorage<ClientAccountEntity> tradersTableStorage, INoSQLTableStorage<AzureIndex> emailIndices)
 {
     _tradersTableStorage = tradersTableStorage;
     _emailIndices = emailIndices;
 }
 public BroadcastInProgressRepository(IReloadingManager <string> connectionStringManager, ILogFactory logFactory)
 {
     _table = AzureTableStorage <BroadcastInProgressEntity> .Create(connectionStringManager, "BroadcastsInProgress", logFactory);
 }
Exemplo n.º 18
0
 public KycRepository(INoSQLTableStorage<KycEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public AuditLogRepository(INoSQLTableStorage <AuditLogDataEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 20
0
 public MenuBadgesRepository(INoSQLTableStorage<MenuBadgeEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public CustomWatchListRepository(
     INoSQLTableStorage <CustomWatchListEntity> customWatchListTable)
 {
     _customWatchListTable = customWatchListTable;
 }
Exemplo n.º 22
0
 public ClientsRepository(INoSQLTableStorage <ClientAccountEntity> tradersTableStorage, INoSQLTableStorage <AzureIndex> emailIndices)
 {
     _tradersTableStorage = tradersTableStorage;
     _emailIndices        = emailIndices;
 }
 public ObservableWalletRepository(INoSQLTableStorage <ObservableWalletEntity> storage)
 {
     _storage = storage;
 }
Exemplo n.º 24
0
 public WatchListRepository(INoSQLTableStorage <WatchListEntity> tableStorage, string partitionKey = null) : base(tableStorage, partitionKey)
 {
 }
Exemplo n.º 25
0
 public BrowserSessionsRepository(INoSQLTableStorage <BrowserSessionEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 26
0
 public ExternalTradeRepository(INoSQLTableStorage <ExternalTradeEntity> storage)
 {
     _storage = storage;
 }
Exemplo n.º 27
0
 public LykkeEventHistoryRepository(INoSQLTableStorage <EventHistoryEntity> storage)
     : base(storage)
 {
 }
 public MarginTradingWatchListsRepository(INoSQLTableStorage <MarginTradingWatchListEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public LastCursorRepository(INoSQLTableStorage <CursorEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 30
0
 public TimersSettingsRepository(INoSQLTableStorage <TimersSettingsEntity> storage)
 {
     _storage = storage;
 }
 public TransactionRequestMappingRepository(INoSQLTableStorage <TransactionRequestMappingEntity> table)
 {
     _table = table;
 }
Exemplo n.º 32
0
 public PersonalDataRepository(INoSQLTableStorage<PersonalDataEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public MarginTradingPaymentLogRepository(INoSQLTableStorage <MarginTradingPaymentLogEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 34
0
 public PinSecurityRepository(INoSQLTableStorage<PinSecurityEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 35
0
 public MenuBadgesRepository(INoSQLTableStorage <MenuBadgeEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 36
0
 public BackOfficeUsersRepository(INoSQLTableStorage<BackOfficeUserEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 37
0
 public PaymentTransactionEventsLogRepository(INoSQLTableStorage <PaymentTransactionEventLogEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 38
0
 public KycUploadsLog(INoSQLTableStorage<KycUploadsLogItemEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 39
0
 private CashoutsBatchRepository(INoSQLTableStorage <CashoutsBatchEntity> storage)
 {
     _storage = storage;
 }
Exemplo n.º 40
0
 public AssetsRepository(INoSQLTableStorage<AssetEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
 public CandleHistoryRepository(INoSQLTableStorage <CandleTableEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 42
0
 public IdentityGenerator(INoSQLTableStorage<IdentityEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 43
0
 public ItemsRepositoryBase(INoSQLTableStorage <T> storage)
 {
     _storage = storage;
 }
 public BrowserSessionsRepository(INoSQLTableStorage<BrowserSessionEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }
Exemplo n.º 45
0
 public AccountsRepository(INoSQLTableStorage<AccountEntity> tableStorage)
 {
     _tableStorage = tableStorage;
 }