public async Task DeleteNotificationById(IOperation operation, int id)
        {
            if (!await notificationStore.IsNotificationExist(operation, id))
            {
                throw CommonExceptions.NotificationWasNotFound(operation, id);
            }

            await notificationStore.DeleteNotificationById(operation, id);
        }