Example #1
0
 public DescriptionProcessor(IChatStorageService chatStorageService)
 {
     this.chatStorageService = chatStorageService;
 }
Example #2
0
 public WelcomeMessageProcessor(IChatStorageService chatStorageService)
 {
     this.chatStorageService = chatStorageService;
 }
Example #3
0
 public DateProcessor(IChatStorageService chatStorageService)
 {
     this.chatStorageService = chatStorageService;
 }
Example #4
0
 public ChatService(IBotService botService, IChatStorageService chatStorageService, IConversationProcessorFactory conversationProcessorFactory)
 {
     this.botService                   = botService;
     this.chatStorageService           = chatStorageService;
     this.conversationProcessorFactory = conversationProcessorFactory;
 }
Example #5
0
 public TimeProcessor(IEventStorageService eventStorageService, IChatStorageService chatStorageService)
 {
     this.eventStorageService = eventStorageService;
     this.chatStorageService  = chatStorageService;
 }