Working with Template Syntax Formatting

Note
The code uses some of the objects defined in The Business Layer.

Template Syntax Formats

Specifying String and Numeric Formats

Learn more about string and numeric formats here.

Template Syntax

ManagerContract Price
<<foreach [in getManagers()]>><br /><<[getName()]:upper>><<[getContracts().sum(<br /> c =><br /> c.getPrice())]:arabicDash>><br /><</foreach>>
Total:<<[getManagers().sum(<br /> m => m.getContracts().sum(<br /> c => c.getPrice()))]>>

Download Template

Get template from here.

The Code