public static IEventFlowOptions ConfigureLiteDb(
     this IEventFlowOptions eventFlowOptions,
     Stream stream,
     BsonMapper mapper = null)
 {
     return(eventFlowOptions.ConfigureLiteDb(() => new LiteDatabase(stream, mapper)));
 }
 public static IEventFlowOptions ConfigureLiteDb(
     this IEventFlowOptions eventFlowOptions,
     string connectionString,
     BsonMapper mapper = null)
 {
     return(eventFlowOptions.ConfigureLiteDb(() => new LiteDatabase(connectionString, mapper)));
 }