/// <summary>
        /// CTor
        /// </summary>
        public CustomerManagerUsingBO()
        {
            InitializeComponent();

            // block resizing beyond a minimum;
            this.MinimumSize = this.Size;
            _customerScope   = new CustomerWithOrdersDataScope();
            _customerScope.ContainedDataChanged += new EventHandler(_customerScope_ScopedDataChanged);
        }
 public CustomerManager()
 {
     InitializeComponent();
     _customerScope = new CustomerWithOrdersDataScope();
     _customerScope.ContainedDataChanged += new EventHandler(_customerScope_ScopedDataChanged);
 }