//using BotSharp.Abstraction.Conversations; //using BotSharp.Abstraction.Conversations.Models; //namespace BotSharp.Plugin.PizzaBot.Functions; //public class PlaceOrderFn : IFunctionCallback //{ // public string Name => "place_an_order"; // private readonly IServiceProvider _service; // public PlaceOrderFn(IServiceProvider service) // { // _service = service; // } // public async Task Execute(RoleDialogModel message) // { // message.Content = "The order number is P123-01"; // var state = _service.GetRequiredService(); // state.SetState("order_number", "P123-01"); // return true; // } //}