Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 491 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 491 Bytes

Lykke.Service.PayInvoice

LykkePay invoice subsystem

Client: Nuget

Client usage

Register client services in container:

ContainerBuilder builder;
...
var settings = new PayInvoiceServiceClientSettings("http://<service>:[port]/");
builder.RegisterInstance(new PayInvoiceClient(settings))
    .As<IPayInvoiceClient>()
    .SingleInstance();

Now you can use:

  • IPayInvoiceClient - HTTP client for service API