Exemplo n.º 1
0
 public TranslationModuleAPI(
     MethodAPI writerAPI,
     MethodAPI readerAPI,
     Func <ObjectGeneration, TranslationDirection, bool> when = null)
 {
     WriterAPI = writerAPI;
     ReaderAPI = readerAPI;
     When      = when;
 }
Exemplo n.º 2
0
 public TranslationModuleAPI(MethodAPI api, Func <ObjectGeneration, TranslationDirection, bool> when = null)
 {
     WriterAPI = api;
     ReaderAPI = api;
     When      = when;
 }