public MenuCommandHandler(IBotClient botClient,
                           ILittleThingService littleThingService,
                           ICallbackDataFormatter callbackDataFormatter,
                           ICurrentChatService currentChatService) : base(botClient)
 {
     _littleThingService    = littleThingService;
     _callbackDataFormatter = callbackDataFormatter;
     _currentChatService    = currentChatService;
 }
 public CurrentAuthorSetterFilter(
     ICurrentAuthorService currentAuthorService,
     ILongToGuidConverter guidConverter,
     ICurrentChatService currentChatService,
     IAuthorService authorService)
 {
     _currentAuthorService = currentAuthorService;
     _guidConverter        = guidConverter;
     _currentChatService   = currentChatService;
     _authorService        = authorService;
 }
Exemple #3
0
 public AddLittleThingMenuCommandHandler(IBotClient botClient,
                                         ICurrentChatService currentChatService)
     : base(botClient)
 {
     _currentChatService = currentChatService;
 }