using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WMS.Model.Stock;
using System.Data;
namespace WMS.IData.IStock
{
///
/// 库区间调拨单入库明细
///
public interface IAreaRepIn
{
///
/// 获取库区间调拨单入库明细
///
/// 库区间调拨单入库明细
DataTable GetAreaRepInDT(AreaRepInModel model);
///
/// 插入库区间调拨单入库明细信息
///
/// 库区间调拨单入库明细Model
void InsertAreaRepIn(AreaRepInModel model);
///
/// 修改库区间调拨单入库明细信息
///
/// 库区间调拨单入库明细Model
void UpdateAreaRepIn(AreaRepInModel model);
///
/// 删除库区间调拨单入库明细信息
///
///
void DeleteAreaRepIn(string ID);
///
/// 通过库区间调拨单编号删除库区间调拨单入库明细
///
///
void DeleteAreaRepInByAreaRepID(string ID);
///
/// 向备份表中添加库区间调拨单入库明细
///
/// 库区间调拨单编号
void InsertAreaRepInBack(string AreaRepID);
}
}