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

            return(Ok(result));
        }