예제 #1
0
        //Shows all the information about all the buses from the DB
        public DataSet showAllBuses()
        {
            BusCAD  c  = new BusCAD();
            DataSet ds = c.showBuses(this);

            return(ds);
        }
예제 #2
0
        public ArrayList showBuses()
        {
            ArrayList a = new ArrayList();
            BusCAD    c = new BusCAD();

            a = c.showBuses();
            return(a);
        }