<div ng-app="myModule">
<div ng-controller="customerCtrl">
<h3> Isolated Scope with Name </h3>
<div my-directive-with-name name="{{customer.name}}"></div>
<br/>
<h3> Isolated Scope with Model </h3>
<div my-directive-with-model customer="customer"></div>
<br/>
<h3> Isolated Scope with Model and Function </h3>
<div my-directive-with-model-and-function datasource="customer"
action="changeData()"
></div>
</div>
</div>