public async Task <IActionResult> Index()
        {
            var devices = await _devicesRepository.GetAllMonitoring().ToListAsync();

            ViewBag.Current = "Home";
            return(View(devices));
        }