private void UpdateCraftingBases()
        {
            var craftingBases = PoeNinjaApi.GetCraftingBases();

            foreach (var craftingBase in craftingBases)
            {
                var dbCraftingBase = Context.CraftingBases.SingleOrDefault(c => c.InGameId == craftingBase.InGameId);
                if (dbCraftingBase == default(CraftingBase))
                {
                    Context.CraftingBases.Add(craftingBase);
                }
                else
                {
                    dbCraftingBase.PriceInChaos   = craftingBase.PriceInChaos;
                    dbCraftingBase.PriceInExalted = craftingBase.PriceInExalted;
                }
            }

            Context.SaveChanges();
        }