public GetterTextFile(IGetter <string> filepath, Behaviour modifier = Behaviour.Exception) { GPTH = filepath.NotNull(); this.modify = this.get_modification(modifier); }
public enumerator(IGetter <string[]> source) { SRC = source.NotNull(); this.Reset(); }
public bch_file(Run parent, IGetter <string> source) { PRT = parent.NotNull(); SRC = source.NotNull(); }
public CmdExecute(IGetter <string> filepath) { GPTH = filepath.NotNull(); }
public CmdTransfer(IGetter <T> source, ISetter <T> destination) { SRC = source.NotNull(); DST = destination.NotNull(); }
public GetterAskConsole(IGetter <string> question) { GQST = question.NotNull(); }
public GetterFiltered(IGetter <IEnumerable <T> > source) { GITM = source.NotNull(); }
public GetterEnumerable(IGetter <IEnumerable <T> > source) { GITM = source.NotNull("Datasource unset"); }
public GetterConverter(Func <TInput, T> converter, IGetter <TInput> source) : this(converter) { GSRC = source.NotNull("Source unset"); }