public async Task MarkAsSeenAsync(string userId, long[] notificationIds)
 {
     await _repository.UpdateBatchAsync(userId, notificationIds,
                                        t => new Notification {
         HasSeen = true
     });
 }