public async Task <IActionResult> Index()
        {
            var batches = await _service.GetAllAsync();

            return(View(batches));
        }