public async Task ReSubmitJob(int jobId) { try { await _hubContext.Clients.All.SendAsync("DisableJobReSubmit", jobId); await _periodEndService.ReSubmitFailedJobAsync(jobId); } catch (Exception e) { _logger.LogError(e.Message, e); throw; } }
public async Task <IActionResult> ReSubmitJob(int collectionYear, int period, int jobId) { await _periodEndService.ReSubmitFailedJobAsync(jobId); return(RedirectToAction("Index", new { collectionYear, period })); }