class MoviesServiceClient 
  def get_movie_showtimes_by_movie_and_location(movie_id, zip_code)
    result = self.get_showtimes(zip_code, [], movie_id)
    result.group_by_theatre 
  end

  def get_movie_showtimes_by_theatre(theatre_id)
    result = self.get_showtimes([], theatre_id, '') 
    result.group_by_movie 
  end
end

