public IActionResult addBatch(string batchname, string batchurl)
        {
            _context.AddEntry(
                new BatchModel()
            {
                batchName = batchname,
                batchURL  = batchurl
            });

            return(RedirectToAction("devtools", "Home"));
        }