public async Task <bool> AddAsync(IWithdrawLimit item)
        {
            try
            {
                var record = WithdrawLimitRecord.Create(item.AssetId, item.LimitAmount);
                await _tableStorage.InsertOrReplaceAsync(record);

                return(true);
            }
            catch
            {
                return(false);
            }
        }