Beispiel #1
0
        public String[,] ReadCustomers()
        {
            customers = new DAO.CustomersDAO();
            Int32 count = customers.PositionCount();

            String[,] xxx = new String[7, count];
            customers.ReadCustomer();
            xxx = customers.ReadCustomer();
            return(xxx);
        }