public async Task <IActionResult> Seed(bool show = false)
        {
            try
            {
                if (show)
                {
                    ViewBag.Data = await _dataSeeder.SeedToString("true");
                }

                return(View());
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                throw;
            }
        }