using System; using System.Collections.Generic; using Sony.ChartBot.Entities; using Sony.ChartBot.Entities.MessengerApi; using Sony.ChartBot.Entities.Storage; using Sony.ChartBot.Helpers; using Sony.ChartBot.Messages.Helpers; namespace Sony.ChartBot.Messages.MessageBuilders { public class AskForComparisonMessageBuilder : IMessageBuilder { public ResponseType ResponseType => ResponseType.Succeeded; public IEnumerable BuildMessages(ChartTrackModel data) { var text = $"Let's compare! Tell me the name of the artist and country you want to compare with {data.TrackName} by {data.ArtistName} in {data.Country.EnglishName}"; return new[] { new MessageToSend { text = text } }; } } }