public MainWindow() { InitializeComponent(); this.auditor = new Auditor(); this.shipper = new Shipper(); }
public MainWindow() { this.InitializeComponent(); Window.Current.SizeChanged += App.WindowSizeChanged; this.auditor = new Auditor(); this.shipper = new Shipper(); }
public MainWindow() { InitializeComponent(); this.auditor = new Auditor(); this.shipper = new Shipper(); checkoutController = new CheckoutController(); checkoutController.CheckoutProcessing += auditor.AuditOrder; checkoutController.CheckoutProcessing += shipper.ShipOrder; }
public MainWindow() { InitializeComponent(); this.auditor = new Auditor(); this.shipper = new Shipper(); this.checkoutController = new CheckoutController(); this.checkoutController.CheckoutProcessing += this.auditor.AuditOrder; this.checkoutController.CheckoutProcessing += this.shipper.ShipOrder; this.auditor.AuditProcessingComplete += this.displayMessage; this.shipper.ShipProcessingComplete += this.displayMessage; }