Ejemplo n.º 1
0
 public IDataWritingStrategy DoTransit(IDataRelayStrategy source) => new FromFileStrategy(source, _filePath);
Ejemplo n.º 2
0
 public FromFileStrategy(IDataRelayStrategy relayStrategy, string filePath)
 {
     _relayStrategy = relayStrategy;
     _filePath      = filePath;
 }