コード例 #1
0
        public async Task <string> InsertAsync(IForwardWithdrawal forwardWithdrawal)
        {
            var entity = ForwardWithdrawalEntity.Create(forwardWithdrawal);
            await _tableStorage.InsertAsync(entity);

            return(entity.Id);
        }