1 package org.myorg.jpatickets.bl; 2 3 import org.myorg.jpatickets.bo.Venue; 4 5 public interface VenueMgmt { 6 Venue createVenue(Venue venue, int sections, int positions, int rows); 7 Venue getVenue(String venueId); 8 }