Package com.xvitcoder.angualrspringapp.beans

Examples of com.xvitcoder.angualrspringapp.beans.RailwayStation


    rsList.add(railwayStation);   
   
  }

  public void deleteRailwayStationById(Long id) {
        RailwayStation found = findRailwayStationById(id);
        if (found != null) {
            rsList.remove(found);
            id--;
        }
   
View Full Code Here


        }
   
  }

  public void updateRailwayStation(RailwayStation railwayStation) {
        RailwayStation found = findRailwayStationById(railwayStation.getId());
        if (found != null) {
            rsList.remove(found);
            rsList.add(railwayStation);
        }
  }
View Full Code Here

TOP

Related Classes of com.xvitcoder.angualrspringapp.beans.RailwayStation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.