public async Task <IActionResult> UpdateNotificationAsReadAsync(int userId)
        {
            var result = await _service.UpdateUnseenNotificationAsync(userId);

            return(Ok(result));
        }