Skip to content

MadPay-724/MadPay724.AspNetCore.GateWay

Repository files navigation

MadPay 724 AspNetCore SDK

Build status NuGet GitHub issues GitHub stars GitHub license

Current version: 1.1.x [Stable]

Wiki

for using this awesome library, you only need to add two things

first: add this line of code to your Startup.cs

public void ConfigureServices(IServiceCollection services)
{
  //...
  services.AddMadpay724GateWay();
  //...
}

Then inject in your class constrauctor :

public class Test
{
  private readonly IMadPayGateWay _gateWay;
  public Test(IMadPayGateWay gateWay)
  {
    _gateWay=gateWay;
  }

at the end use three method that provided (pay | verify | refund) :

Releases

No releases published

Packages

No packages published

Languages