public void Initialize()
 {
     mockCustomerOrdersView = Substitute.For<ICustomerOrdersView>();
     mockContract = Substitute.For<IContract>();
     presenter = new CustomerOrdersPresenter(mockCustomerOrdersView, mockContract);
 }
 public CustomerOrdersPresenter(ICustomerOrdersView customerOrderView, IContract customerContract)
 {
     this.customerOrderView = customerOrderView;
     this.customerContract = customerContract;
 }