Example #1
0
 public PreviousAndNextProjectCallbackQuery(
     ITelegramBotClient telegramBotClient,
     ProjectPaginatorService projectPaginatorService)
 {
     _telegramBotClient       = telegramBotClient;
     _projectPaginatorService = projectPaginatorService;
 }
 public SelectProjectCallbackQuery(
     ITelegramBotClient telegramBotClient,
     ProjectPaginatorService projectPaginatorService,
     StorageService storageService)
 {
     _telegramBotClient       = telegramBotClient;
     _projectPaginatorService = projectPaginatorService;
     _storageService          = storageService;
 }
 public GetProjectsCommand(
     ITelegramBotClient telegramBotClient,
     IDigitalOceanClient digitalOceanClient,
     StorageService storageService,
     ProjectPaginatorService projectPaginatorService)
 {
     _telegramBotClient       = telegramBotClient;
     _digitalOceanClient      = digitalOceanClient;
     _storageService          = storageService;
     _projectPaginatorService = projectPaginatorService;
 }