public async Task<IActionResult> Index()
 {
     var userId = Guid.Parse(User.FindFirst(ClaimTypes.NameIdentifier).Value);
     var result = await alertJobService.GetAlertJobsAsync(userId);
     return View(result);
 }