public IActionResult deleteBatch(BatchModel batch)
        {
            _context.RemoveEntry(batch);

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