public void Unsubscribe(UserIdentifier user, string notificationName, EntityIdentifier entityIdentifier = null)
 {
     _store.DeleteSubscription(
         user,
         notificationName,
         entityIdentifier == null ? null : entityIdentifier.Type.FullName,
         entityIdentifier == null ? null : entityIdentifier.Id.ToJsonString()
         );
 }