public override void CreateContext()
 {
     presenter = new CalculationPresenter(view);
     presenter.OnViewInitialized();
 }
 // give public access to postback, for javascript
 // events are listed in the order they occur
 protected void Page_Init()
 {
     presenter = new CalculationPresenter(this);
 }