public void Cancel(Offhire offhire, CancelledState cancelledState)
 {
     offhire.Cancel(cancelledState, eventNotifier);
 }
Example #2
0
        //================================================================================
        public void Cancel(CancelledState cancelledState, IFinanceNotifier eventNotifier)
        {
            this.setState(cancelledState);

            eventNotifier.NotifyOffhireCancelled(this);
        }