public IActionResult GetNotification(int id) { var notification = _notificationService.GetNotification(id); var notificationDto = _mapper.Map <UserNotificationDto>(notification); var response = new ApiResponse <UserNotificationDto>(notificationDto); return(Ok(response)); }