25 lines
599 B
C#
25 lines
599 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Web.Core.Dto;
|
|
using WMS.Web.Core.Dto.Login;
|
|
using WMS.Web.Core.Dto.OutStock;
|
|
using WMS.Web.Core.Internal.Results;
|
|
|
|
namespace WMS.Web.Domain.IService
|
|
{
|
|
/// <summary>
|
|
/// 出库服务
|
|
/// </summary>
|
|
public interface IOutStockService
|
|
{
|
|
//出库单保存
|
|
Task<Result> Save(SaveOutStockRequest dto, LoginInDto loginInfo);
|
|
// 同步金蝶
|
|
Task<Result> Sync(OperateRequest dto, LoginInDto loginInfo, bool isRepeatSync = true);
|
|
|
|
}
|
|
}
|