| | |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.Attributes; |
| | | using WIDESEA_External.Model; |
| | | using WIDESEA_DTO; |
| | | using WIDESEA_IInboundService; |
| | | |
| | | namespace WIDESEA_External.ERPService |
| | | { |
| | |
| | | /// </summary> |
| | | public class ERPInvokeService : IERPInvokeService |
| | | { |
| | | |
| | | public WebResponseContent ReceivePurchaseOrder(PurchaseOrderModel model) |
| | | private readonly IInboundOrderService _inboundOrderService; |
| | | public ERPInvokeService(IInboundOrderService inboundOrderService) |
| | | { |
| | | return WebResponseContent.Instance.OK(); |
| | | _inboundOrderService = inboundOrderService; |
| | | } |
| | | |
| | | |
| | | } |
| | | } |