public static void ReplyWithDeletedAlarm(AlarmBotContext context, Alarm alarm = null) { context.Reply($"I have deleted {alarm.Title} alarm"); }
public static void ReplyWithNoAlarmsFound(AlarmBotContext context, string text) { context.Reply($"There were no alarms found for {(string)text}."); }
public static void ReplyWithTitlePrompt(AlarmBotContext context) { context.Reply(GetDeleteActivity(context, context.UserState.Alarms, "Delete Alarms", "What alarm do you want to delete?")); }
public static void ReplyWithNoAlarms(AlarmBotContext context) { context.Reply($"There are no alarms defined."); }