Beispiel #1
0
        public Form1()
        {
            InitializeComponent();
            DataAcces       db       = new DataAcces();
            List <Customer> customer = new List <Customer>();

            customer = db.GetCustomer();

            foreach (Customer custom in customer)
            {
                customerCB.Items.Add(custom.fullInfo);
            }
        }