public Processor(
     IBotScriptCompiler botScriptCompiler,
     IBotScriptCache botScriptCache,
     ILogger <Processor> logger)
 {
     _botScriptCompiler = botScriptCompiler;
     _botScriptCache    = botScriptCache;
     _logger            = logger;
 }
Ejemplo n.º 2
0
 public BotProcessingFactory(
     IBotLogic botLogic,
     IBotScriptCompiler botScriptCompiler,
     IBotScriptCache botScriptCache, ILogger <BotProcessingFactory> logger)
 {
     _botLogic          = botLogic;
     _botScriptCompiler = botScriptCompiler;
     _botScriptCache    = botScriptCache;
     _logger            = logger;
 }