BudgetAnalyser.Engine.Statement.Data.Mapper_TransactionSetDto_StatementModel.ToDtoPostprocessing C# (CSharp) Method

ToDtoPostprocessing() private method

private ToDtoPostprocessing ( TransactionSetDto &dto, StatementModel model ) : void
dto TransactionSetDto
model StatementModel
return void
        partial void ToDtoPostprocessing(ref TransactionSetDto dto, StatementModel model)
        {
            var transactions10 = model.AllTransactions.Select(this.transactionMapper.ToDto).ToList();
            dto.Transactions = transactions10;
        }