public ParkingCostCalculatorForm()
 {
     InitializeComponent();
     _presenter = new ParkingCostCalculatorPresenter(this);
 }
Ejemplo n.º 2
0
 public void SetupScenario()
 {
     _mockedCalculator = new Mock<IParkingCostCalculatorView>();
     _presenter = new ParkingCostCalculatorPresenter(_mockedCalculator.Object);
 }
 public ParkingCostCalculatorForm()
 {
     InitializeComponent();
     _presenter = new ParkingCostCalculatorPresenter(this);
 }