class MoviesService < ActionWebService::Base 
  web_service_api MoviesApi 
  def get_showtimes(zip_code, theatre_id, movie_id)   
    Logiecl::Showtime.get_by_zip_theatre_movie(zip_code, theatre_id, movie_id)
  end
end


