diff --git a/modules/ContentStore/Handler/Store.cs b/modules/ContentStore/Handler/Store.cs index ef26225..a524a56 100644 --- a/modules/ContentStore/Handler/Store.cs +++ b/modules/ContentStore/Handler/Store.cs @@ -115,7 +115,8 @@ public class Store : BotEventHandler answer = "Товар недоступен"; await Bot.EditMessageTextAsync(Chat.Id, messageId, - $"{From.ToHtml()} попытался купить \"{storeItem.Name}\", но товара в наличии не оказалось."); + $"{From.ToHtml()} попытался купить \"{storeItem.Name}\", но товара в наличии не оказалось.", + ParseMode.Html); await AnswerQuery(query.Id, answer); return; } diff --git a/modules/ContentStore/Service/RaccoonService.cs b/modules/ContentStore/Service/RaccoonService.cs new file mode 100644 index 0000000..c1c9280 --- /dev/null +++ b/modules/ContentStore/Service/RaccoonService.cs @@ -0,0 +1,7 @@ +namespace West.TelegramBot.ContentStore.Service; + +public class RaccoonService : SomeRandomApiAbstractService +{ + public RaccoonService(): base("raccoon", "Енот", 40, 160) + {} +} diff --git a/modules/ContentStore/Service/RacoonService.cs b/modules/ContentStore/Service/RacoonService.cs deleted file mode 100644 index 25cbbaa..0000000 --- a/modules/ContentStore/Service/RacoonService.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace West.TelegramBot.ContentStore.Service; - -public class RacoonService : SomeRandomApiAbstractService -{ - public RacoonService(): base("racoon", "Енот", 40, 160) - {} -}