From 874c0a97a5d9ace7bbbe6be740204f0a2c7730e7 Mon Sep 17 00:00:00 2001 From: dongfo Date: Thu, 11 Apr 2019 17:36:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E5=9F=BA=E6=9C=AC=E6=8E=A7?= =?UTF-8?q?=E5=88=B6=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/AlipayController.cs | 15 +++++++++++++++ .../Controllers/NotifyController.cs | 16 ++++++++++++++++ .../Controllers/QpayController.cs | 15 +++++++++++++++ .../Controllers/UnionpayController.cs | 15 +++++++++++++++ .../Controllers/WechatpayController.cs | 15 +++++++++++++++ 5 files changed, 76 insertions(+) create mode 100644 PayCenter/PaySharp.PayCenter/Controllers/AlipayController.cs create mode 100644 PayCenter/PaySharp.PayCenter/Controllers/NotifyController.cs create mode 100644 PayCenter/PaySharp.PayCenter/Controllers/QpayController.cs create mode 100644 PayCenter/PaySharp.PayCenter/Controllers/UnionpayController.cs create mode 100644 PayCenter/PaySharp.PayCenter/Controllers/WechatpayController.cs diff --git a/PayCenter/PaySharp.PayCenter/Controllers/AlipayController.cs b/PayCenter/PaySharp.PayCenter/Controllers/AlipayController.cs new file mode 100644 index 0000000..375cba5 --- /dev/null +++ b/PayCenter/PaySharp.PayCenter/Controllers/AlipayController.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + +namespace PaySharp.PayCenter.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class AlipayController : ControllerBase + { + } +} \ No newline at end of file diff --git a/PayCenter/PaySharp.PayCenter/Controllers/NotifyController.cs b/PayCenter/PaySharp.PayCenter/Controllers/NotifyController.cs new file mode 100644 index 0000000..57d4365 --- /dev/null +++ b/PayCenter/PaySharp.PayCenter/Controllers/NotifyController.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace PaySharp.PayCenter.Controllers +{ + public class NotifyController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} \ No newline at end of file diff --git a/PayCenter/PaySharp.PayCenter/Controllers/QpayController.cs b/PayCenter/PaySharp.PayCenter/Controllers/QpayController.cs new file mode 100644 index 0000000..7517f00 --- /dev/null +++ b/PayCenter/PaySharp.PayCenter/Controllers/QpayController.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + +namespace PaySharp.PayCenter.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class QpayController : ControllerBase + { + } +} \ No newline at end of file diff --git a/PayCenter/PaySharp.PayCenter/Controllers/UnionpayController.cs b/PayCenter/PaySharp.PayCenter/Controllers/UnionpayController.cs new file mode 100644 index 0000000..848feb8 --- /dev/null +++ b/PayCenter/PaySharp.PayCenter/Controllers/UnionpayController.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + +namespace PaySharp.PayCenter.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class UnionpayController : ControllerBase + { + } +} \ No newline at end of file diff --git a/PayCenter/PaySharp.PayCenter/Controllers/WechatpayController.cs b/PayCenter/PaySharp.PayCenter/Controllers/WechatpayController.cs new file mode 100644 index 0000000..8e5746f --- /dev/null +++ b/PayCenter/PaySharp.PayCenter/Controllers/WechatpayController.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + +namespace PaySharp.PayCenter.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class WechatpayController : ControllerBase + { + } +} \ No newline at end of file