Ejemplo n.º 1
0
 public EventsApiCommand(ITelegramBotClient bot, IEventsStateRepository events, MessageConstants constants, IApiService api)
 {
     _bot       = bot;
     _events    = events;
     _constants = constants;
     _api       = api;
 }
Ejemplo n.º 2
0
 public CommandDetector(IStateRepository states, IEventsStateRepository events)
 {
     _states = states;
     _events = events;
 }
Ejemplo n.º 3
0
 public GetEventsCommand(ITelegramBotClient bot, IEventsStateRepository events, MessageConstants constants)
 {
     _bot       = bot;
     _events    = events;
     _constants = constants;
 }