public CommittedEventWorkItem(
     CoreProjection projection, EventReaderSubscriptionMessage.CommittedEventReceived message,
     StatePartitionSelector statePartitionSelector)
     : base(projection, null)
 {
     _statePartitionSelector = statePartitionSelector;
     _message = message;
 }
 public CommittedEventWorkItem(
     IEventProcessingProjectionPhase projection, EventReaderSubscriptionMessage.CommittedEventReceived message,
     StatePartitionSelector statePartitionSelector)
     : base(null)
 {
     _projection = projection;
     _statePartitionSelector = statePartitionSelector;
     _message = message;
     _requiresRunning = true;
 }