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.
23 lines
641 B
23 lines
641 B
using BBWYB.Server.Business;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BBWYB.Server.API.Controllers
|
|
{
|
|
|
|
public class DataRepairController : BaseApiController
|
|
{
|
|
private DataRepairBusiness dataRepairBusiness;
|
|
|
|
public DataRepairController(IHttpContextAccessor httpContextAccessor, DataRepairBusiness dataRepairBusiness) : base(httpContextAccessor)
|
|
{
|
|
this.dataRepairBusiness = dataRepairBusiness;
|
|
}
|
|
|
|
[HttpPost]
|
|
public void RepairPurchaseExpressOrder()
|
|
{
|
|
dataRepairBusiness.RepairPurchaseExpressOrder();
|
|
}
|
|
}
|
|
}
|
|
|