Пример #1
0
 public GetterTextFile(IGetter <string> filepath, Behaviour modifier = Behaviour.Exception)
 {
     GPTH        = filepath.NotNull();
     this.modify = this.get_modification(modifier);
 }
Пример #2
0
 public enumerator(IGetter <string[]> source)
 {
     SRC = source.NotNull();
     this.Reset();
 }
Пример #3
0
 public bch_file(Run parent, IGetter <string> source)
 {
     PRT = parent.NotNull();
     SRC = source.NotNull();
 }
Пример #4
0
 public CmdExecute(IGetter <string> filepath)
 {
     GPTH = filepath.NotNull();
 }
Пример #5
0
 public CmdTransfer(IGetter <T> source, ISetter <T> destination)
 {
     SRC = source.NotNull();
     DST = destination.NotNull();
 }
Пример #6
0
 public GetterAskConsole(IGetter <string> question)
 {
     GQST = question.NotNull();
 }
Пример #7
0
 public GetterFiltered(IGetter <IEnumerable <T> > source)
 {
     GITM = source.NotNull();
 }
Пример #8
0
 public GetterEnumerable(IGetter <IEnumerable <T> > source)
 {
     GITM = source.NotNull("Datasource unset");
 }
Пример #9
0
 public GetterConverter(Func <TInput, T> converter, IGetter <TInput> source)
     : this(converter)
 {
     GSRC = source.NotNull("Source unset");
 }