<div ng-controller="parentController">
Hi My Name is {{name}}
<div ng-controller="childController">
My salary is {{salary | currency}} and my Dept is {{Dept}}
<h1>
Employee Paycheck
</h1>
<div ng-controller="emppaycheck">
Taxes is {{getTaxes() | currency}} Net is {{NetInc() | currency}}
</div>
</div>
</div>