Exemplo n.º 1
0
 public UserActivator(string id, BotQueue receive, BotPostBack send)
 {
     _id    = id;
     _proxy = new BotProxy(receive, send);
 }
Exemplo n.º 2
0
 public Bot(BotProxy botProxy)
 {
     _botProxy = botProxy;
 }
Exemplo n.º 3
0
 public void CreateBot(BotProxy proxy)
 {
     bot = new Bot(proxy);
 }