Package it.hotel.model.facility

Examples of it.hotel.model.facility.Facility


  @SuppressWarnings("unchecked")
  @Transactional(readOnly = true, propagation = Propagation.REQUIRED)
  public Collection<Facility> getFacilitiesForStructure(int structureId) {
    Structure structure = new Structure();
    structure.setId(structureId);
    Facility facility = new Facility();
    facility.addStructure(structure);
    return searchByExample(facility);
  }
View Full Code Here

TOP

Related Classes of it.hotel.model.facility.Facility

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.