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

ToModelPostprocessing() private method

private ToModelPostprocessing ( TransactionSetDto dto, StatementModel &model ) : void
dto TransactionSetDto
model StatementModel
return void
        partial void ToModelPostprocessing(TransactionSetDto dto, ref StatementModel model)
        {
            model.LoadTransactions(dto.Transactions.Select(t => this.transactionMapper.ToModel(t)));
        }
    }