Skip to content

Commit 8d5c579

Browse files
author
Alexey Novichikhin
committed
add in ioc IEmbeddedDynamicLinkClient
1 parent 02cba82 commit 8d5c579

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/MyJetWallet.DynamicLinkGenerator/Ioc/AutofacHelper.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ public static void RegisterDynamicLinkClient(this ContainerBuilder builder, IMyN
2121
.RegisterType<DynamicLinkClient>()
2222
.As<IDynamicLinkClient>()
2323
.SingleInstance();
24+
25+
26+
builder
27+
.RegisterType<EmbeddedDynamicLinkClient>()
28+
.As<IEmbeddedDynamicLinkClient>()
29+
.SingleInstance();
2430
}
2531

2632
public static void RegisterDynamicLinkSettingsWriter(this ContainerBuilder builder, Func<string> myNoSqlWriterUrl)

0 commit comments

Comments
 (0)