[core] client factory for SomeRandomApi

This commit is contained in:
Andriy
2023-07-28 23:13:56 +03:00
parent c19696b360
commit 42509dcacd
11 changed files with 62 additions and 18 deletions
@@ -1,7 +1,9 @@
using West.TelegramBot.ContentStore.API;
namespace West.TelegramBot.ContentStore.Service.SomeRandomApi;
public class KangarooService : SomeRandomApiAbstractService
{
public KangarooService() : base("kangaroo", "Кенгуру", 40, 175)
public KangarooService(ISomeRandomApi api) : base(api, "kangaroo", "Кенгуру", 40, 175)
{ }
}