コード例 #1
0
 public DescriptionProcessor(IChatStorageService chatStorageService)
 {
     this.chatStorageService = chatStorageService;
 }
コード例 #2
0
 public WelcomeMessageProcessor(IChatStorageService chatStorageService)
 {
     this.chatStorageService = chatStorageService;
 }
コード例 #3
0
ファイル: DateProcessor.cs プロジェクト: grinjaok/TelegramBot
 public DateProcessor(IChatStorageService chatStorageService)
 {
     this.chatStorageService = chatStorageService;
 }
コード例 #4
0
ファイル: ChatService.cs プロジェクト: grinjaok/TelegramBot
 public ChatService(IBotService botService, IChatStorageService chatStorageService, IConversationProcessorFactory conversationProcessorFactory)
 {
     this.botService                   = botService;
     this.chatStorageService           = chatStorageService;
     this.conversationProcessorFactory = conversationProcessorFactory;
 }
コード例 #5
0
 public TimeProcessor(IEventStorageService eventStorageService, IChatStorageService chatStorageService)
 {
     this.eventStorageService = eventStorageService;
     this.chatStorageService  = chatStorageService;
 }