Exemple #1
0
 public static void AddRequestStatus(
     string statusKey,
     DialogStateData state)
 {
     if (bookingRequestStore.ContainsKey(statusKey))
     {
         bookingRequestStore[statusKey] = state;
     }
     else
     {
         bookingRequestStore.Add(statusKey, state);
     }
 }
 protected IEventActivatedDialog(DialogStateData storedDialogState)
     : base(storedDialogState?.ConversationData, storedDialogState?.UserProfile)
 {
 }
 protected GettingUserFeedBackDialog(DialogStateData storedDialogState)
     : base(storedDialogState)
 {
 }