コード例 #1
0
 public ParkingCostCalculatorForm()
 {
     InitializeComponent();
     _presenter = new ParkingCostCalculatorPresenter(this);
 }
コード例 #2
0
ファイル: ParkingSteps.cs プロジェクト: rainedream/BDD-Dojo
 public void SetupScenario()
 {
     _mockedCalculator = new Mock<IParkingCostCalculatorView>();
     _presenter = new ParkingCostCalculatorPresenter(_mockedCalculator.Object);
 }
コード例 #3
0
 public ParkingCostCalculatorForm()
 {
     InitializeComponent();
     _presenter = new ParkingCostCalculatorPresenter(this);
 }