public Form1() { InitializeComponent(); customers = new List <Customer>(); ordersHandler = new OrdersHandler(); tabControlPdAndCustomers.SelectedTab = tabPageEmpty; }
public StatisticsForm(List <Customer> customers, OrdersHandler ordersHandler) { InitializeComponent(); this.ordersHandler = ordersHandler; this.customers = customers; }