| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | |
| | | namespace WIDESEA_IOutboundService |
| | | { |
| | | /// <summary> |
| | | /// åºåºä¸å¡æ¥å£å±éæ |
| | | /// </summary> |
| | | public interface IOutboundService : IDependency |
| | | { |
| | | /// <summary> |
| | | /// MES颿ä¸å¡æ¥å£å± |
| | | /// </summary> |
| | | IOutMESOrderService OutMESOrderService { get; } |
| | | /// <summary> |
| | | /// ç管æç¨ä¸å¡æ¥å£å± |
| | | /// </summary> |
| | | IOutSGOrderService OutSGOrderService { get; } |
| | | /// <summary> |
| | | /// ç管æç¨æç»ä¸å¡æ¥å£å± |
| | | /// </summary> |
| | | IOutSGOrderDetailService OutSGOrderDetailService { get; } |
| | | /// <summary> |
| | | /// åºåºè¯¦æ
ä¸å¡æ¥å£å± |
| | | /// </summary> |
| | | IOutStockLockInfoService OutStockLockInfoService { get; } |
| | | } |
| | | } |