Exemplo n.º 1
0
        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();
        }
Exemplo n.º 3
0
        public MainWindow()
        {
            InitializeComponent();

            this.auditor = new Auditor();
            this.shipper = new Shipper();
            checkoutController = new CheckoutController();
            checkoutController.CheckoutProcessing += auditor.AuditOrder;
            checkoutController.CheckoutProcessing += shipper.ShipOrder;
        }
Exemplo n.º 4
0
        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;
        }