public TimeRegistrationDialog(IBotCache cacheService, string userId)
 {
     this._cacheService = cacheService;
     this._userId       = userId;
 }
Beispiel #2
0
 public MainConversationDialog(IHoursReminderService hoursReminderService, IBotCache botCache, LuisService luisService) : base(luisService)
 {
     SetField.NotNull(out this._hoursReminderService, nameof(_hoursReminderService), hoursReminderService);
     SetField.NotNull(out this._botCache, nameof(_botCache), botCache);
 }