You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using BBWY.Server.Business;
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace BBWY.Server.API.Controllers
|
|
|
|
{
|
|
|
|
|
|
|
|
public class RefundOrderSyncController : BaseApiController
|
|
|
|
{
|
|
|
|
private RefundOrderSyncBusiness refundOrderSyncBusiness;
|
|
|
|
|
|
|
|
public RefundOrderSyncController(RefundOrderSyncBusiness refundOrderSyncBusiness, IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
|
|
|
|
{
|
|
|
|
this.refundOrderSyncBusiness = refundOrderSyncBusiness;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 全店同步退款订单
|
|
|
|
/// </summary>
|
|
|
|
[HttpPost]
|
|
|
|
public void SyncAllShopRefundOrder()
|
|
|
|
{
|
|
|
|
refundOrderSyncBusiness.SyncAllShopRefundOrder();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|