/// <summary>
 /// Gets the list of all Housing Items
 /// </summary>
 /// <returns>A list of XivFurniture objects containing housing items</returns>
 public async Task <List <XivFurniture> > GetFurnitureList(string substring = null)
 {
     return(await XivCache.GetCachedFurnitureList(substring));
 }
        /// <summary>
        /// Gets the list of all Housing Items
        /// </summary>
        /// <returns>A list of XivFurniture objects containing housing items</returns>
        public async Task <List <XivFurniture> > GetFurnitureList(string substring = null)
        {
            var cache = new XivCache(_gameDirectory, _xivLanguage);

            return(await cache.GetCachedFurnitureList(substring));
        }