Arca payment system vpos client for ASP.Net Core
$ dotnet add package Solart.Arca.ClientThis is Arca vpos library for ASP.Net core platform.
In startup.cs class register the client
public void ConfigureServices(IServiceCollection services)
{
...
services.AddArcaClient("ARCA_URL");
...
}
and inject client somewhere you want
using using Solart.Arca.Client;
...
public class SomeController : ControllerBase
{
readonly IArcaClient _client;
public SomeController(IArcaClient client)
{
_client = client;
}
}