ABsoluteMaybe.ABsoluteMaybeBuilder.StoreExperimentsUsing C# (CSharp) Method

StoreExperimentsUsing() public static method

public static StoreExperimentsUsing ( Func experimentCommandsFactory ) : ABsoluteMaybeBuilder
experimentCommandsFactory Func
return ABsoluteMaybeBuilder
        public static ABsoluteMaybeBuilder StoreExperimentsUsing(Func<IExperimentCommands> experimentCommandsFactory)
        {
            return new ABsoluteMaybeBuilder()
                .SetExperimentStorage(experimentCommandsFactory);
        }