Exemplo n.º 1
0
        public GetProductsByCustomer(Model.Customer customer)
        {
            InitializeComponent();

            this.StartPosition = FormStartPosition.CenterParent;

            this.Text = customer.CustomerFullName + "-商品";

            var list = productManager.GetProductsByCustomerId(customer.CustomerId);

            this.bindingSource1.DataSource = list;
        }