/*
*所有关于Dt_container_detail类的业务代码接口应在此处编写
*/
using WIDESEA.Core.BaseProvider;
using WIDESEA.Entity.DomainModels;
using WIDESEA.Core.Utilities;
using System.Linq.Expressions;
using System;
namespace WIDESEA.Services.IServices
{
public partial interface IDt_container_detailService
{
///
/// 添加库存体
///
///
/// 库存头ID
///
WebResponseContent AddContainerdetail(Dt_taskinfo dt_Taskinfo, Guid headID);
///
/// 删除库存体
///
/// 库存体ID
///
WebResponseContent Deletecontainer_detail(Guid containerdtl_id);
}
}