public async Task Execute(IChatService chatService, long chatId, int userId, int messageId, string? commandText)
{
IEnumerable<TestDTO> ads = await _telegramService.ListAdvertismentsByWord(commandText);
foreach(var n in ads)
{
string AdInfo = n.Title + n.Description;
await chatService.SendMessage(chatId,AdInfo);
}
}