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

            String[,] yyy = new String[5, count];
            customers.ReadCustomerForPayment();
            yyy = customers.ReadCustomerForPayment();
            return(yyy);
        }
Beispiel #2
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);
        }