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