Exemplo n.º 1
0
 private OutputData(SourceOutputType outputType, object data)
 {
     OutputType = outputType;
     Data       = data;
 }
Exemplo n.º 2
0
 public static Func <ISource, IInputData, OutputData, bool> IsType(SourceOutputType type)
 {
     return((source, pageData, outputData) => outputData.OutputType == type);
 }