using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_IStockRepository;
|
using WIDESEA_Model.Models;
|
|
namespace WIDESEA_IStockService
|
{
|
public interface IProStockInfoService : IService<Dt_ProStockInfo>
|
{
|
IProStockInfoRepository Repository { get; }
|
/// <summary>
|
/// 根据外包信息解绑内包与胶框库存信息
|
/// </summary>
|
/// <param name="proStockInfoDetails"></param>
|
/// <returns></returns>
|
WebResponseContent UnBindStock(List<Dt_ProStockInfoDetail> proStockInfoDetails);
|
}
|
}
|