public CallingController() : base()
 {
     CallingConversation.RegisterCallingBot(callingBotService => new IVRBot(callingBotService));
 }
示例#2
0
 public CallingControllerBase(IDialog <object> rootDialog)
 {
     CallingConversation.RegisterCallingBot(c => new CallingBot(c, rootDialog));
 }
示例#3
0
 public CallingController()
     : base()
 {
     CallingConversation.RegisterCallingBot(c => new ClearComCallingBot(c));
 }
示例#4
0
 public CallingController()
     : base()
 {
     CallingConversation.RegisterCallingBot(c => new SimpleIVRBot(c));
 }