public DataSet showAllTrains() //show all the trains { TrainCAD c = new TrainCAD(); DataSet ds = c.showTrains(this); return(ds); }
public ArrayList showTrains() { ArrayList a = new ArrayList(); TrainCAD c = new TrainCAD(); a = c.showTrains(); return(a); }