module Holidays

def cache_between(start_date, end_date, *options)

def cache_between(start_date, end_date, *options)
  start_date, end_date = get_date(start_date), get_date(end_date)
  cache_data = between(start_date, end_date, *options)
  Factory::Definition.cache_repository.cache_between(start_date, end_date, cache_data, options)
end