Beispiel #1
0
        public async Task Merge(Pool pool)
        {
            await DepositPool.Add(await pool.DepositPool.GetPool());

            await OfferPool.Add(await pool.OfferPool.GetPool());

            await OfferCancelPool.Add(await pool.OfferCancelPool.GetPool());

            await TransactionPool.Add(await pool.TransactionPool.GetPool());

            await WithdrawalPool.Add(await pool.WithdrawalPool.GetPool());
        }
Beispiel #2
0
 public async Task Add(IEnumerable <Domain.Offer> of) =>
 await OfferPool.Add(of);
Beispiel #3
0
 public async Task <bool> Add(Domain.Offer of) =>
 await OfferPool.Add(of);