using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Csvr
{
public interface ICSVR_IDMAP_Q
{
///
/// 根据旧的customerID
///
///
///
List GetResId(string OldCustoemrId);
///
/// 根据旧的customerid批量转Resid
///
///
///
List GetResIdList(System.Data.DataTable dt, string selecttype);
///
/// 根据新旧客户ID查找映射关系是否已经存在
///
/// 旧客户ID
/// 新客户ID
///
CSVR_IDMAP GetModelByResIdAndCustomerId(string oldcustomerid, string newresid);
}
}