public ThrowingMonsterStateManager(
     StateEntryFactory factory,
     EntityKeyFactorySource entityKeyFactorySource,
     StateEntrySubscriber subscriber,
     StateEntryNotifier notifier,
     ValueGenerationManager valueGeneration,
     DbContextService <IModel> model,
     DbContextService <DataStore> dataStore)
     : base(factory, entityKeyFactorySource, subscriber, notifier, valueGeneration, model, dataStore)
 {
 }
 private static IServiceProvider CreateContextServices(StateEntryNotifier notifier, IModel model)
 {
     return(TestHelpers.CreateContextServices(new ServiceCollection().AddInstance(notifier), model));
 }