[(ngModel)]="overRideRate" is the short form of [ngModel]="overRideRate"
(ngModelChange)="overRideRate = $event"
[ngModel]="overRideRate"is to bindoverRideRateto theinput.value(ngModelChange)="overRideRate = $event"is to updateoverRideRatewith the value ofinput.valuewhen thechangeevent was emitted.
Together they are what Angular2 provides for two-way binding.