| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseServices; |
| | | using WIDESEA_DTO.Inbound; |
| | | using WIDESEA_DTO.Outbound; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_IOutboundService |
| | | { |
| | | /// <summary> |
| | | /// 出库单服务接口 |
| | | /// </summary> |
| | | public interface IOutboundOrderService : IService<Dt_OutboundOrder> |
| | | { |
| | | /// <summary> |
| | | /// 获取出库单仓储接口 |
| | | /// </summary> |
| | | IRepository<Dt_OutboundOrder> Repository { get; } |
| | | |
| | | } |
| | | } |